body {
    background-color: #EDEFF0;
}

.banner-content {
    background-image: url("../img/background.jpg");
    background-size: cover;
    background-position: center;
    height: 180px;
    position: relative;
    border-radius: 20px;
}
.logo-content {
    width: 200px;
    height: 200px;
    background: #fff;
    border: 24px solid #EDEFF0;
    border-radius: 50%;
    margin: -100px auto 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.logo-content img {
    max-width: 60%;
}
nav ul {
    list-style: none;
    padding: 0;
}
nav ul li a {
    width: 100%;
    max-width: 350px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.data-content i {
    color: #42DEC9;
}

@media (max-width: 768px){
    .banner-content {
        height: 150px;
    }

    .logo-content {
        width: 180px;
        height: 180px;
        margin: -80px auto 0;
    }
}