body {
    background-image: url("../img/banner.webp");
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
header {
    position: inherit;
    transform: translate(0);
    margin-bottom: 100px;
}

.container {
    width: 50%;
    height: auto;
    margin-left: 25%;
    padding: 50px;
    box-sizing: border-box;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.678);
    background-color: white;
    margin-bottom: 50px;
}
.profile-image {
    height: auto;
    aspect-ratio: 1 / 1;
    width: 40%;
    border-radius: 100%;
    margin-left: 30%;
    margin-bottom: 20px;
}   
.profile-name {
    text-align: center;
    color: #4e8f3b;
    margin-bottom: 50px;
}
.profile-title {
    padding: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.678);
    font-size: 40px;
    width:50%;
    margin-left: 25%;
    text-align: center;
    color: rgb(78, 143, 59);
    background-color: white;
    transform: translate(0, -90px);  
}
.description-name {
    color: rgb(78, 143, 59);
    margin-bottom: 20px;
}
ul {
    margin-bottom: 50px;
}
li {
    font-size: 25px;
}
.tvz {
    color: rgb(126, 40, 40);
}

@media (max-width: 850px) {
    .profile-image {
        width: 50%;
        margin-left: 25%;
    }
    .profile-title {
        font-size: 25px;
    }
    .container {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .profile-title {
        transform: translate(0, -50px);
    }
    .container {
        padding-top: 20px;
    }
    .profile-title {
        font-size: 20px;
    }
    h1 {
        font-size: 20px;
    }
    li {
        font-size: 15px;
    }
    .profile-image {
        width: 65%;
        margin-left: 17%;
    }
}