@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allison&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    width: 100%;
    background-color: #0c171e;
    color: #c5c1bb ;
}

main {
    max-width: 1400px;
    margin: auto;
    margin-top: 5rem;
    padding: 0 2.5rem;
}

strong {
    color: #eff0eb;
}

header {
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8rem;
    color: #eff0eb;
}

.navLogo {
    display: none;
    text-decoration: none;
    color: #eff0eb;
}

.navLogo:hover {
    color: #cf1152;
}

.navmenu {
    display: none;
    margin-left: auto;
}

.menu {
    list-style: none;
    font-size: 1.1rem;
}

li, .list {
    display: inline-block;
    padding: 0 1.25rem;
    text-decoration: none;
    color: #eff0eb;
    transition: .3s ease-in-out;
}

a {
    text-decoration: none;
    color: #cf1152;
}

a:hover {
    transition: .3s ease-in-out;
    color: #eff0eb;
}

.about {
    display: flex;
    font-weight: 300;
}

.line {
    background-color: #cf1152;
    width: 0.25rem;
    margin-right: 2rem;
}

.parte1 {
    font-size: 3rem;
    line-height: 2.8rem;
}

.parte2 {
    font-size: 5rem;
    line-height: 4.5rem;
    color: #eff0eb;
}

.current {
    font-size: 1.5rem;
    margin-top: 2rem;
    /* margin-left: 2.25rem; */
}

.links {
    margin-top: 5rem;
}

.social {
    display: none;
    margin-top: 7rem;
}



.logo {
    width: 40px;
    margin: 1rem 1rem 1rem 0;
    transition: .3s ease-in-out;
}

.logo:hover {
    filter: brightness(1.3);
}

.git {
    display: none;
}

@media (max-width:800px) {
    header {
        margin-bottom: 3rem;
    }
    main {
        margin-top: 1.5rem;
    }
    .navmenu {
        display: none;
    }

    .parte1 {
        font-size: 2rem;
        line-height: 2rem;
        margin-block-start: 0;
    }

    .parte2 {
        font-size: 3rem;
        line-height: 2.5rem;
    }

    .current {
        font-size: 1rem;
    }
    
}

