section {
    padding: 2.5% 10%;
    
    color: #B4C3DE;
    color: #A0ABBD;
    color: var(--white-4);
    font-size: 1.3rem;
    
    text-align: left;
}

section a {
    font-weight: 600;
    color: rgba(0, 183, 255, 0.6);
}

section a::after {
    content: "↗";
    font-size: small;
    
}

section a:hover {
    color: rgb(0, 183, 255);
}

section h1 {
    color: var(--white-1);
    text-align: center;
    font-size: 3rem;
}

section h2 {
    color: var(--white-2);
    text-align: left;
}

.content section:nth-of-type(2n+1) {
    background-color: rgba(255, 255, 255, 0.007);
}

#first-section {
    margin-bottom: 5%;
    padding: 5% 0 5% 10%;
    display: flex;
    gap: 40px;
    
    /* background-color: rgba(0, 183, 255, 0.03); */
    /* box-shadow: 0px 10px 10px 10px rgba(0, 183, 255, 0.03); */

}

#first-section .me {
    flex: 2.5 1 0;
    text-align: left;
}

#first-section .me h1 {
    font-size: 4.5rem;
    line-height: 0.7;
    color: rgb(0, 183, 255);
    text-align: left;
}

#first-section .me h3 {
    opacity: 1;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--white-2);
}

#first-section .summary {
    flex: 0 0 auto;
    margin-right: 5%;
    
    height: 14rem;
    background-color: rgba(0, 113, 184, 0.1);
    padding: 0px 0px;
    border: solid rgba(0, 113, 184, 0.9) 1px;
    font-size: 1rem;
    
    display: flex;
}

#first-section .summary a::after {
    content: "";
}

#first-section .summary ol {
    align-self: center;
    
    list-style-type: none;
    line-height: 0;
    text-align: center;
    
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 0px;
    margin: 0;
}

#first-section .summary li {
    padding: 0px 30px;
}

#first-section .summary li:hover {
    background-color: var(--blue-4);
}

@media (max-width: 950px) {
    section {
        font-size: 1rem;
    }
    
    section p {
        text-align: justify;
    }
    
    #first-section {
        padding: 5%;
        display: flex;
        flex-direction: column;
        gap: 40px;

        background-color: rgba(0, 183, 255, 0.03);
    }

    #first-section .me {
        text-align: center;
    }

    #first-section .me h1 {
        font-size: 3rem;
        line-height: 0.7;
        color: rgb(0, 183, 255);
        text-align: center;
    }

    #first-section .me h3 {
        opacity: 1;
        font-weight: 400;
        font-size: 1rem;
        line-height: 1;
        color: var(--white-2);
    }

    #first-section .summary {
        width: 80%;
        margin-inline: auto;
        
        background-color: rgba(0, 113, 184, 0.1);
        padding: 0px 0px;
        border: solid rgba(0, 113, 184, 0.9) 1px;
        font-size: 1rem;

        display: flex;
    }

    #first-section .summary ol {
        align-self: center;
        
        margin-inline: auto;
        padding: 0;

        list-style-type: none;
        line-height: 0;
        text-align: center;

        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    #first-section .summary li {
        padding: 0px 30px;
        text-align: center;
    }

    #first-section .summary li:hover {
        background-color: var(--blue-4);
    }
}