body {
    min-height: 100vh;
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(#3467aed4, #3467aee0), url(https://thumbs.dreamstime.com/b/detailed-earth-korea-japan-highly-atmosphere-exaggerated-relief-light-flooded-cities-transition-night-to-day-d-157149708.jpg);
    background-size: cover;
}

img {
    max-width: 100%;
}

#root {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#root>.layout {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 40px;
    box-shadow: 8px 12px 20px #00000021;
    padding: 20px 40px;
}

.logo {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.logo>img {
    width: 100px;
}

.heading {
    font-size: 22px;
    text-align: center;
    margin: 10px 0;
    color: black;
    line-height: 1.4;
}

.contact {
    margin: 20px 0;
    display: flex;
    grid-gap: 20px;
}

.btn {
    display: flex;
    align-items: center;
    grid-gap: 5px;
    padding: 15px 30px;
    background-color: #3467ae;
    border-radius: 15px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 0 20px rgb(83 166 244 / 20%);
    will-change: transform;
    transition: all .2s ease-in-out;
}

.btn.red {
    background-color: #ae4234;
}

.btn:hover {
    transform: scale(1.025);
    opacity: .8;
}

.btn>svg {
    width: 19px;
    height: 19px;
}

.btn>svg path {
    fill: white;
}

.partnership>h3 {
    text-transform: uppercase;
    font-size: 14px;
    color: #919191;
    text-align: center;
}

.partners {
    display: flex;
    grid-gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.partners>img {
    height: 50px;
}

@media (max-width: 800px) {
    #root>.layout {
        margin: 0 20px
    }

    .heading {
        font-size: 16px;
    }

    .contact {
        flex-direction: column;
        width: 100%;
        grid-gap: 10px;
    }

    .contact>a {
        justify-content: center;
    }
}