html {
    background-color: #FFFFFF;
}

.main-info-root {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-info {
    display: flex;
}

.call-to-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.call-to-action h1  {
    color: #575757;
    text-align: center;
}

.call-to-action a {
    background-color: #53ADF0;
    border: none;
    border-radius: 4px;
    padding: 12px 60px;
    font-size: 18px;
    color: #FFFFFF;
    text-decoration: none;
}

.showcase-imgs {
    max-width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.showcase-imgs img {
    width: 30%;
    max-width: 400px;
}

footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    width: 50%;
    max-width: 400px;
    display: flex;
    justify-content: space-evenly;
}

@media (max-width: 820px) {
    .main-info {
        flex-direction: column;
    }
}

.roboto-font-bold {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.roboto-font-regular {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}