.content {
    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;
    flex-wrap: wrap;

    padding: 150px 15% 0 15%;
    width: 70%;

    gap: 50px;
}

#skill {
    display: inline-block;
    opacity: 0;

    animation: 1s slide-off ease-in-out;
}

.skill {
    position: relative;
    text-align: center;

    margin-top: 50px;

    background-color: #555555;
    color: white;
    font-size: 80px;
    width: 25vw;

    padding: 15px 5vw 15px 5vw;
    border-radius: 50px;

    overflow: hidden;
}

.skill::after {
    content: "";
    position: absolute;

    bottom: 0;
    height: 3px;
    background: white;
    width: 0;

    animation: 1s slider-slide-out ease-in;
}

.skill.active::after {
    left: 0;
    width: 100%;
    animation: 10s slider linear;
}

@keyframes slider {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes slider-slide-out {
    0% {
        width: 100%;
        right: 0;
    }

    100% {
        width: 0;
        right: 0;
    }
}

#skill.active {
    animation: 1s slide-in ease-in-out;
    opacity: 1;
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translate(-10vw);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes slide-off {
    0% {
        opacity: 1;
        transform: translate(0);
    }

    100% {
        opacity: 0;
        transform: translate(10vw);
    }
}

.display {
    width: 75%;
}

.info {
    display: none;

    background: #e3e3e3;
    width: 95%;
    padding: 2.5%;
    border-radius: 20px;

    color: black;

    flex-direction: column;
}

.info.active {
    display: flex;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 15px;
    flex-wrap: wrap;
}

.link {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: "Roboto", sans-serif;
    font-size: 20px;

    gap: 5px;

    text-decoration: none;

    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);

    border: 5px #484848 solid;
    border-radius: 50px;
    padding: 5px 5px 5px 5px;

    width: auto;
    transition: all 0.15s ease-in-out;

    color: black;
}

.link:visited {
    color: black;
}

.link > h4 {
    margin: 0;
}

.link:hover {
    transform: scale(1.05) rotate(-3deg);
    backface-visibility: hidden;
    will-change: transform;
    z-index: 2;

    border-color: rgb(255, 255, 255);
}

.containers {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    flex-direction: row;
    gap: 20px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;

    background: #484848;
    border: 5px #484848 solid;

    flex-direction: column;
    padding: 5px;
    border-radius: 15px;

    transition: 0.2s;

    height: 15vh;
}

.container > img {
    height: 50px;
    border-radius: 15px;
}

.container > h4 {
    color: #e3e3e3;
    margin: 5px;
}

.container:hover {
    transform: scale(1.04) rotate(-1deg);
    backface-visibility: hidden;
    will-change: transform;
    z-index: 2;

    border-color: rgb(0, 0, 0);
}

aside {
    width: 10vw;
    background-color: #e3e3e3;

    position: absolute;
    left: 0;
    top: 25%;

    display: flex;

    justify-content: right;
    flex-direction: column;
}

aside > h4 {
    text-align: center;
    margin: 0;
    padding: 15px;
    transition: 0.2s background-color;

    cursor: pointer;
}

h4.active {
    background-color: #cecece;
}

aside > h4:hover {
    background-color: #d5d5d5;
}