body {
    width: 100vw;
    min-height: 100vh;
    height: fit-content;
    overflow-x: hidden;
    background-image: url("../imgs/landing_page_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
}

#main-container {
    width: 98vw;
    height: fit-content;
    margin: auto;
}

#main-logo {
    max-width: 50%;
    height: fit-content;
    margin: auto;    
}

#main-logo img {
    width: 100%;
    height: auto;
    margin: 20% 0 30%;
}

#menus {
    width: 98vw;
    margin: auto;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.button {
    background-color: rgb(255,255,255,0.2);
    width: 35%;
    margin: 5% 5%;
    border-radius: 6vw;
    text-align: center;
}

.button img {
    width: 90%;
    height: auto;
    margin: 1vw auto;
    border-radius: 5vw;
}

.button h3 {
    font-family: 'Prompt', sans-serif;
    color: white;
    font-size: 4vw;
    margin: 1.5vw;
}