/*GLOBALES*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #033250;
}

.aboutContainer {
    width: 768px;
    height: 80vh;
    margin: auto;
}

.section {
    width: 100%;
    margin-top: 5%;
}

.section p {
    text-align: justify;
}

.tech {
    display: flex;
    justify-content: space-around;
    font-size: 15px;
}

.aboutContainer ul {
    padding-left: 30px;
}

.aboutMe {
    margin-top: 5vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.aboutMe div {
    margin-top: 1rem;
}

.aboutMe a {
    margin-top: 1rem;
}

@media(max-width: 425px) {
    .aboutContainer {
        width: 320px;
        height: inherit;
        font-size: 0.8rem;
    }
    
}