.about_me h2 {
    margin-bottom: 0;
}

.information {
    display: grid;
    grid-template-columns: 1fr .5fr;
    align-items: center;
    min-height: 400px;
    gap: 8rem;
}

.information__text {
    display: grid;
    justify-items: center;
    line-height: 1.6rem;
    padding: 2rem 0;
}

.information__text span.inline {
    display: inline;
    margin: 0;
}

.information__text span {
    display: block;
    margin: 1rem 0;
}

a.button {
    margin-left: 1rem;
    margin-right: 1rem;
    border: 1px solid #EEEEEE;
    border-radius: 5px;
    background-color: transparent;
    color: #EEEEEE;
    padding: 0.6rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    min-width: 20%;
}

a.button:hover {
    border-color: #9AEBA3;
    color: #9AEBA3;
}

.information__text___button {
    margin-top: 4rem;
}

.information__text___social li{
    display: inline-block;

    margin-top: 3rem;
}

.information__image img{
    max-width: 300px;
    max-height: 3500px;
    border-radius: 5px;
}

.information__image figcaption {
    font-size: .9rem;
    text-align: start;
}

.information__text___social li{
    margin-left: 1.5rem;
}

.information__text___social li a {
    font-size: 2rem !important;
}

.information__text___social li:first-of-type{ 
    margin-left: 0;
}

.information__text___social-invisible {
    display: none;
}

.social__media:hover {
    color: #9AEBA3;
}

@media only screen and (max-width: 1080px){
    .information {
        display: block;
        align-items: center;
    }

    .information__image {
        text-align: center;
    }

    .information__image img {
        max-width: 75%;
        max-height: 350px;
    }

    .information__image figcaption {
        text-align: center;
    }
}