/*I love you Lily <3*/

body {
    font-family: 'Crimson Pro', serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#gifImage{
    width: auto;
    height: 256px; /*Otherwise the gifs keep changing heights due to their different size.*/
}

button{
    padding: 10px;
    margin: 0 10px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-family: 'Comfortaa', sans-serif;
}

button:hover{
    box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, 0.2);
}

button:active{
    box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, 0.5);
}

#buttons{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#yesButton{
    background-color: limegreen;
}

#noButtonContainer{
    display: flex;
    flex-direction: row;
}

#noButton{
    background-color: indianred;
    height: 50px;
}

#noButtonMessage{
    display: none; /*Starts hidden*/
}

#theySaidYes{
    display: none;
}

#yayMessage{
    max-width: 60%;
    margin: 20px auto;
}