.profile {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vw;
    margin-top: -10px;
    margin-bottom: 10px;
    background-color: #2c2c2c;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.profile_image {
    width: 15%;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-left: 23%;
}

.profile_information {
    width: auto;
    margin-right: 23%;
    font-weight: bold;
    list-style: none;
}

.profile_information i {
    color: #70b1e0;
}

.profile_information p {
    color: #eaeaea;
}

.profile_information a:hover p {
    color: #70b1e0;
}

.profile_information li {
    display: flex;
    align-items: center;
}

.profile_information h1 {
    font-size: 2.2vw;
}

.profile_information h2 {
    font-size: 1.6vw;
    margin-bottom: 1rem;
}

.profile_information i {
    color: #70b1e0;
    font-size: 1.6vw;
    margin: 0.3vw 1vw 0.5rem 2vw;
}

.profile_information p {
    font-size: 1.6vw;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.profile_information i, .profile_information p {
    vertical-align: middle;
    display: inline-block;
}

@media (max-width: 810px) {
    .profile {
        padding-top: 60px;
        flex-wrap: wrap;
        width: 100%;
    }

    .profile_information {
        padding-top: 0.5rem;
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .profile_information h1 {
        margin-right: auto;
        margin-left: auto;
        font-size: 5vw;
    }

    .profile_information h2 {
        margin-right: auto;
        margin-left: auto;
        font-size: 3.6vw;
        margin-bottom: 1rem;
    }

    .profile_information p, .profile_information i {
        font-size: 3.6vw;
    }

    .profile_information i {
        margin-top: 1vw;
    }

    .profile_image {
        margin-right: auto;
        margin-left: auto;
        height: auto;
        width: 33%;
    }
}
