body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

.content {
    max-width: 800px;
    width: 100%;
    padding: 15px;
}

.top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.top::after {
    content: "";
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: url('./img/icon_full.svg');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 100;
    right: -40px;
    bottom: -40px;
}

.top .logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.middle {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.middle .title {
    color: #0B4697;
    text-align: center;
    font-weight: bold;
}

.middle .text {
    color: #0B4697;
    font-weight: bold;
}

.middle .text-pink {
    color: #E3AEC3;
    font-weight: 300;
}

.middle .icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    margin-bottom: 80px;
}

.middle .icons .icon {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    color: #0B4697;
    font-weight: bold;
    font-size: 20px;
}

.middle .icons .icon img {
    max-width: 50px;
    width: 100%;
    object-fit: contain;
}

.bottom {
    border-radius: 20px;
    background-color: #fadceb;
    padding: 20px;
    position: relative;
    margin-bottom: 40px;
}

.bottom::before {
    content: "";
    display: block;
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: url('./img/icon_outline.svg');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 100;
    left: 20px;
    top: -90px;
}

.bottom::after {
    content: "";
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: url('./img/icon_full.svg');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 100;
    right: -40px;
    bottom: -40px;
}

.bottom .text {
    font-weight: bold;
    color: #E3AEC3;
    margin-bottom: 20px;
}

.bottom .items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.bottom .items .item {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    color: #0B4697;
    font-weight: bold;
    font-size: 18px;
}

.contact {
    color: #E3AEC3;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
}

.contact::before {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url('./img/icon_full.svg');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 100;
    left: -40px;
    top: 10px;
}


.contact a {
    text-decoration: none;
    color: #E3AEC3;

}

.contact a:hover {
    text-decoration: underline;
}



@media screen and (max-width: 800px) {

    .empty {
        display: none;
    }


    .content {
        overflow: hidden;
    }

    .middle .icons,
    .bottom .items {
        grid-template-columns: 1fr;
    }
}