#introduction {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-left: 8vw;
    gap: 4vw;
}

#information {
    flex: 1;
    padding-right: 8vw;
}

#skills {
    height: 80%;
    padding: 4vw;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 4vw;
    position: relative;
}

.skill {
    width: 8vw;
    aspect-ratio: 1 / 1;
    border: none;
    border-radius: 50%;
    background-color: rgba(111, 209, 201, 0.1);
    transition: background-color 0.2s ease;
}

.skill img {
    width: 60%;
    aspect-ratio: 1 / 1;
    opacity: 1;
    opacity: 0.2;
    transition: opacity 0.2s ease;
}

.skill:hover img {
    opacity: 1;
}

.skill:hover {
    background-color: rgba(111, 209, 201, 0.3);
}

.hero {
    width: 80%;
}

#greeting {
    font-size: 2.5vw;
    font-weight: bolder;
    text-align: left;
    margin: 0;
}

#description {
    font-size: 1.5vw;
    text-align: left;
    margin: 1vw 0 1vw 0;
}

#highlighted {
    color: #DC0000;
    font-size: 3.5vw;
}

#contact-btn {
    font-family: 'Roboto Mono';
    font-size: 1.2vw;
    font-weight: bolder;
    padding: 1vw 2vw;
    background-color: #DC0000;
    color: white;
    border: none;
    border-radius: 0.5vw;
    cursor: pointer;
}

@media (orientation: portrait) {
    #introduction {
        align-items: center;
        padding: 0;
        gap: 5vh;
    }

    #greeting {
        font-size: 3.5vh;
        font-weight: bolder;
        text-align: left;
        margin: 0;
    }

    #description {
        font-size: 2vh;
        text-align: left;
        margin: 0;
    }

    #highlighted {
        color: #DC0000;
        font-size: 4vh;
    }

    #contact-btn {
        font-size: 2vh;
        padding: 1.4vh;
    }

    #information {
        flex: 1;
        padding-right: 8vw;
    }

    #skills {
        gap: 2vh;
    }

    .skill {
        width: 10vh;
    }
}