body{
    overflow: hidden;
    background-color: rgb(13, 109, 109);
    width: 100%;
    height: 100%;
    -webkit-transition: background-color 2s ease-in-out;
    -moz-transition: background-color 2s ease-in-out;
    -o-transition: background-color 2s ease-in-out;
    -khtml-transition: background-color 2s ease-in-out;
    transition: background-color 2s ease-in-out;
}
main{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    justify-content: center;


}
h1{
    font-size: 4em;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: inherit;
    color: whitesmoke;
    align-self: center;
}
.compliment-box{
    display: flex;
    margin: 0;
    width: auto;
    height: auto;
    max-width: 70%;
    min-width: 50%;
    min-height: 10%;
    padding: 1em;
    align-self: center;
    text-align: center;
    align-content: center;

    background-color: whitesmoke;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
    'Open Sans', 'Helvetica Neue', sans-serif;
    font-style: italic;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.4);
    font-size: 4em;
    border-radius: 0.2em;
    box-shadow: 2px 2px 2px 0.5px rgba(0, 0, 0, 0.4);
}

div#compliment
{
    -webkit-transition: color 2s ease-in-out;
    -moz-transition: color 2s ease-in-out;
    -o-transition: color 2s ease-in-out;
    -khtml-transition: color 2s ease-in-out;
    transition: color 2s ease-in-out;
}

@media screen and  (max-width: 700px) {
    h1{
        font-size: 3em;
    }
    .compliment-box {
      font-size: 2.5em;
      padding: 0.5rem;
      margin: 0;
    }
}

button#new-comp{
    display:flex;
    justify-content: center;
    align-items: center;
    margin-top: 2em;
    align-self: center;
    text-align: center;
    width: 10em;
    height: 3em;
    font-size: 1em;
    font-family: sans-serif;
    font-weight: 600;
    border-radius: 0.2em;
    border: whitesmoke;
    outline: none;
    box-shadow: 2px 2px 2px 0.5px rgba(0, 0, 0, 0.4);

}
