* {
    margin: 0;
    padding: 0;
}

body {
    background: url("images/background.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

img {
    width: 300px;
    margin: 20px;
}

button { 
    font-family: 'Protest Riot', sans-serif;
    font-weight: bold;
    color: #FFFF;
    border: none;
    border-radius: 8px;
    width: 90px;
    height: 45px;
    transition: .3s;
    margin: 0 6px 0 6px;
    cursor: pointer;
}

.text,
.image,
.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.text {
    color: #FFFF;
    font-family: 'Protest Riot', sans-serif;
    font-size: 50px;
}

#btn_yes {
    background-color: green;
}

#btn_no {
    background-color: red;
}

#btn_yes:hover {
    background-color: #3bf65a;
    box-shadow: 0 0 0 5px #3bf66a5f;
    color: #092700;
}

#btn_no:hover {
    background-color: #FF5A5F;
    box-shadow: 0 0 0 5px #d85959;
    color: #5f0606;
}

/* ---------
    PAGES   
--------- */

.page_two {
    display: none;
}

/* -----------------
    MEDIA QUERIES   
----------------- */

@media (min-width: 768px) {
    button {
        width: 110px;
        height: 60px;
    }
}

@media (min-width: 1024px) {
    button {
        width: 150px;
        height: 60px;
    }
}