@import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&display=swap');

* {
    font-family: 'Open Sans Condensed', sans-serif;
}

body {
    margin: 0; padding: 0;
    width: 100vw;
    height: 100vh;
}

#container {
    background-color: #69B1A9;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

#title-container {
    width: 100%;
    height: 30%;

    font-size: 2vw;

    display: flex;
    justify-content: center;
    align-items: center;
}

#wrapper-container {
    background-color: white;
    width: 50%;
    height: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#button-container {
    width: 100%;
    height: 40%;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.button {
    all: unset;
    font-size: 3vw;
    padding: 2vh;
    background-color: #152836;
    color: white;

    cursor: pointer;
}

#footer-container {
    width: 100%;
    height: 30%;
}
