.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;

    margin-top: 5vh;
    margin-bottom: 5vh;
    gap: 5vh;
}

h1 {
    font-size: 2vw;
    font-weight: bold;
    color: #DC0000;
    margin: 0;
}

.skill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;

    gap: 5%;
    width: 80%;
}

.skill img {
    width: 20%;
    aspect-ratio: 1 / 1;
}

.skill p {
    width: 80%;
    font-size: 1.25vw;
}

.skill a {
    color: white;
    text-decoration: none;
}

.skill a:hover {
    text-decoration: underline;
    cursor: pointer;
}

@media (orientation: portrait) {
    h1 {
        font-size: 6vw;
    }

    .content {
        margin-top: 1vh;
        margin-bottom: 1vh;
        gap: 1vh;
    }

    .skill {
        display: block;
        width: 90%;
    }

    .skill img {
        margin-right: 5%;
        width: 10vh;
        float: left;
    }

    .skill p {
        width: 100%;
        font-size: 1.75vh;
    }
}