* {
    margin: 0px;
}

body {
    height: 100vh;
}

.flex-wrapper {
    
    display: flex;
    min-height: 100vh;
    flex-direction: column ;
    /* justify-content: space-between; */
  }

.logo {
    display: flex;
    flex-direction: row;
    height: 15vh;
    width: auto;
    object-fit: cover;
    padding-left: 20px;
}

header {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 15vh;
    background-color: #1eb19d;
    text-align: center;
}

.headerTitle {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: center; */
    justify-content: space-around;
    width: 80%;
    /* text-shadow: 3px 3px 2px rgba(254, 255, 255, 0.77); */
    text-shadow: 3px 3px 2px rgba(93, 95, 95, 0.77);
}

.title {
    font-family: 'Deco', sans-serif;
    font-size: 2.75em;
    padding-right: 80px;
}

footer {
    width: 100vw;
    height: 15vh;
    background-color: #1eb19d;
}

section {
    background-color: #ebeefb;
    height: 70vh;
}

.bot {
    /* float: left; */
    display: flex;
    justify-content: flex-start;
    padding: 15px;
    border-radius: 2rem;
    background-color: #f7b153;
    margin: 1rem 0;
    margin-right: auto;

    -webkit-box-shadow: inset 0px 0px 11px -1px rgba(0,0,0,0.63);
    -moz-box-shadow: inset 0px 0px 11px -1px rgba(0,0,0,0.63);
    box-shadow: inset 0px 0px 11px -1px rgba(0,0,0,0.63);
}

.user {
    /* float: right; */
    display: inline-block;
    justify-content: flex-end;
    padding: 15px;
    border-radius: 2rem;
    background-color: #1eb19d;
    margin: 1rem 0;
    margin-left: auto;

    -webkit-box-shadow: inset 0px 0px 11px -1px rgba(0,0,0,0.63);
    -moz-box-shadow: inset 0px 0px 11px -1px rgba(0,0,0,0.63);
    box-shadow: inset 0px 0px 11px -1px rgba(0,0,0,0.63);
}

.container {
    width: 60vw;
    height: 70vh;
    border-bottom: 0;
    align-items: center;
    border-radius: 10px;
    margin: auto;
}

.chatBox {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    height: 70%;
    margin: auto;
    overflow: scroll;
    display: flex;
    flex-direction: column;
}

#inputBox {
    display: flex;
    width: 100%;
    border: 1px solid rgb(170, 170, 170);
    border-radius: 4px 4px 4px 4px;
    margin-bottom: 20px;
    height: 40px;
    font-size: 1.4em;
}

.input {
    display: flex;
    width: 100%;
    height: 30%;
    margin: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.boldText {
    font-weight: bold;
}

button {
    display: inline-block;
    border: 1px solid rgb(170, 170, 170);
    border-radius: 4px 4px 4px 4px;
    padding: 1rem 2rem;
    margin: 0;
    text-decoration: none;
    background: #214941;
    color: #ffffff;
    font-family: sans-serif;
    cursor: pointer;
    text-align: center;
    transition: background 250ms ease-in-out, 
                transform 150ms ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 35%;
    white-space: nowrap;
    overflow: visible;
    text-overflow: ellipsis;
    text-align: center;
}

.divrepo {
    padding-top: 20px;
    text-align: center;
    font-family: 'Deco';
    font-size: 1.75em;
    text-shadow: 3px 3px 2px rgba(93, 95, 95, 0.77);
}

.divfooter {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    padding-top: 7px;
    background-color: #000000;
    color: #fff;
    height: 28px;
}

.icon {
    padding-top: 7px;
    font-size: 40px;
}

a {
    text-decoration: none;
    color: black;
}

ul {
    list-style: none;
    padding: 0;
}

@font-face {
    font-family: 'Deco';
    src: url(../font/Market_Deco.ttf);
}
@font-face {
    font-family: 'Helvetica';
    src: url(../font/Helvetica45Light_22437.ttf);
}

@media only screen and (max-width: 600px) {
    
    .logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        /* vertical-align: middle; */
        height: 15vh;
        padding-left: 5px;
    }

    .title {
        font-size: 2.2em;
        padding-right: 40px;
    }

    button {
        font-size: 1em;
    }

    .divrepo {
        font-size: 1.2em;
    }

    .icon {
        font-size: 1.4em;
    }
}

@media only screen and (min-width: 768px) {

    .title {
        font-size: 3em;
    }

    .bot {
        font-size: 1.4em;
    }

    .user {
        font-size: 1.4em;
    }

    button {
        font-size: 1.4em;
    }
}

@media only screen and (min-width: 1024px) {

    .title {
        font-size: 4em;
    }

    .bot {
        font-size: 2em;
    }

    .user {
        font-size: 2em;
    }

    button {
        font-size: 1.8em;
    }

    #inputBox {
        height: 60px;
        font-size: 2em;
    }

    .divrepo {
        font-size: 3em;
    }

    .icon {
        font-size: 1.4em;
    }
}