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

*{
    margin: 0;
    padding: 0;
}

html{
    height: 100%;
    width: 100%;
    font-family: 'Fira Code';
}

body{
    background-color: rgba(43,2,57,1); 
    background-image: linear-gradient(0deg, rgba(43,2,57,1) 0%, rgba(183,32,136,1) 50%, rgba(143,10,182,1) 100%);
    background-repeat: no-repeat;
    background-size: 100%;
    color: white;
}

/* nav */
nav{
    width: 100%;
    height: 60px;
    display: flex;
    background-color: #2B0239;
    color: white;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 2;
}

nav h3{
    font-size: 43px;
    padding-left: 30px;
}

nav a{
    text-decoration: none;
    color: white;
}

#about-button:hover{
    width: 100%;
    height: 70px;
    background-color: #7158A6;
}

nav a:hover{
    background-color: #7158A6;
}

#links{
    gap: 25px;
    font-size: 17px;
    padding-right: 30px;
}

.resume-button{
    background-color: #7158A6;
    padding: 8px;
    border: none;
    border-radius: 5px;
    max-height: 45px;
    color: white;
}

/* intro */
.main-intro{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;    
    padding: 100px;
    margin-inline: auto;
}

.main-intro a{
    text-decoration: none;
    color: white;
}

.intro-text{
    display: flex;
    flex-direction: column;
    max-width: 500px;
}

.intro-text h5{
    font-weight: 300;
}

h1{
    font-size: 46px;
    font-weight: 400;
    padding: 2px;
}

.main-intro .resume-button{
    max-width: 200px;
    box-shadow: 2px 2px 15px #2B0239;
}

.resume-button:hover{
    box-shadow: 2px 2px 25px #2B0239;
    cursor: pointer;
}

.intro-text p{
    text-align: left;
    padding: 16px 0 16px 0;
}

#gif{
    max-height: 460px;
    min-height: 150px;
    width: auto;
    flex: auto;
}

@media screen and (max-width(550px)){
    .main-intro{
        flex-direction: column;
    }

    html{
        background: linear-gradient(0deg, rgba(43,2,57,1) 0%, rgba(183,32,136,1) 50%, rgba(143,10,182,1) 100%);;
    }
}

.svg{
    display:flex;
    gap: 8px;
    flex: 1 0 auto;
    align-items: center;
}

h3{
    align-self: flex-start;
    font-size: 30px;
    gap: 16px;
    text-align: center;
}
h2{
    text-align: center;
}

.tecnologias{
    margin-bottom: 16px;
}

/*education*/
#education, #experience{
    display: flex;
    justify-content: center;
    align-items: center;
}

.coluna-ed h3{
    margin: 0 0 24px 0;
}

.coluna-ed h2{
    margin: 24px 0 16px 0;
}

.coluna-ed, .coluna-ex, #coluna-skill{
    padding: 32px;
    gap: 30px;
    margin-inline: auto;
    max-width: 1000px;
}

#UFPR, #Unibrasil, #PUC{
    padding: 8px;
}

.data, .curso{
    font-size: 16px;
    color: #eebdfd;
    margin: 8px 0 8px 0;
    text-align: start;
}
.curso{
    color: #ffffff;
}

.skills{
    display: flex;
    align-items: center;
    justify-content: center;
}

#skill-list{
    list-style: none;
    margin: 16px;
    max-width: 650px;
    text-align: left;
    column-count: 2;
}

#skill-list li:before{
    content: '\2605';
    margin-right: 8px;
}

/*Experience*/

.coluna-ex h3{
    margin-bottom: 46px;
    margin-top: 36px;
}

.coluna-ex h2{
    margin-bottom:36px;
    margin-top: 30px;
}
.coluna-ex p{
    margin-top: 24px;
    margin-bottom: 42px;
}

#footer{
    display: flex;
    font-size: 12px;
    margin: 16px;
    padding: 8px;
    justify-content: center;
}

/* 750px */
@media only screen and (max-width: 750px){
    body{
        background-image: linear-gradient(0deg, rgba(43, 2, 57, 1) 0%, rgba(183, 32, 136, 1) 50%, rgba(143, 10, 182, 1) 100%);
    }
    #gif{
        max-width: 300px;
    }
    .main-intro{
        max-width: 350px;
    }
    .intro-text h1{
        font-size: 40px;
    }
    nav h3{
        transform: scale(0.95);
    }
    #links{
        font-size: 12px;
    }
    .resume-button{
        transform: scale(0.9);
    }
}

/* 650px */
@media only screen and (max-width: 650px){
    body{
        background-image: linear-gradient(0deg, rgba(43, 2, 57, 1) 0%, rgba(183, 32, 136, 1) 50%, rgba(143, 10, 182, 1) 100%);
    }
    #gif{
        max-width: 300px;
    }
    .main-intro{
        max-width: 350px;
    }
    .intro-text h1{
        font-size: 40px;
    }
    nav h3{
        transform: scale(0.95);
    }
    #links{
        font-size: 12px;
    }
    .resume-button{
        transform: scale(0.9);
    }

    .coluna-ed h3, .coluna-ex h3{
        font-size: 28px;
    }
    .coluna-ed h2, .coluna-ex h2{
        font-size: 20px;
    }
    .coluna-ed p, .coluna-ex p{
        font-size: 14px;
    }
}

/* 500px */
@media only screen and (max-width: 500px){
    body{
        background-image: linear-gradient(0deg, rgba(43, 2, 57, 1) 0%, rgba(183, 32, 136, 1) 50%, rgba(143, 10, 182, 1) 100%);
    }
    #gif{
        max-width: 250px;
    }
    .main-intro{
        max-width: 250px;
        margin-right: 8px;
    }
    .intro-text{
        transform: scale(0.9);
    }
    nav h3{
        transform: scale(0.85);
    }
    #links{
        font-size: 12px;
        padding-right: 8px;
    }
    nav .resume-button{
        transform: scale(0.8);
    }
}

/* 400px */
@media only screen and (max-width: 400px){
    body{
        background-image: linear-gradient(0deg, rgba(43, 2, 57, 1) 0%, rgba(183, 32, 136, 1) 50%, rgba(143, 10, 182, 1) 100%);
    }    
    #gif{
        max-width: 200px;
    }
    #links{
        font-size: 12px;
        gap: 8px;
        padding-right: 8px;
    }
    #links button{
        transform: scale(0.8);
    }
}

/* 430px */
@media only screen and (max-width: 430px){
    body{
        background-image: linear-gradient(0deg, rgba(43, 2, 57, 1) 0%, rgba(183, 32, 136, 1) 50%, rgba(143, 10, 182, 1) 100%);
    }    
    #gif{
        max-width: 200px;
    }

    #links{
        font-size: 10px;
    }
}