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);
}

@media (max-width: 950px) {
    section {
        font-size: 1rem;
    }
    
    section p {
        text-align: justify;
    }
}