/* 
    background color: #5133ab
    secondary background color: #8e77d4
*/


*{
    /* background-color: #5133ab; */
    color: white;
    margin: 0;
    padding: 0;
}
html{
    background-color: #8e77d4;
}

/* Header */
header{
    background: rgb(81,51,171);
    background: linear-gradient(180deg, rgba(81,51,171,1) 0%, rgba(142,119,212,1) 100%);
    height: 100vh;
}
header button{
    min-width: 12em;
}
#header-content{
    opacity: 0;
    transition: opacity 3s;
}
#see-more-btn{
    transition: color 1s;
}
#see-more-btn:hover{
    color:#5133ab
}
.pfp{
    border-radius: 50%;
    width: 15em;
    height: 15em;
}

/* About me  */
#about-me{
    background-color: #8e77d4;
    max-width: 100vw;
    overflow-y: hidden;
    
}

/* Sections */
section{
    margin: 1em;
    background: #3f5efb;
    width: 59vw;
    border-radius: 1em;
    padding: 1em;
    font-size: 1.5em;
    transition: box-shadow 0.5s; 
    transition: width 0.1s;
    box-shadow: 10px 5px 5px #5133ab;
}
section:hover{
    box-shadow: 15px 10px 5px #5133ab;
    width: 60vw;
}
section hr{
    height: .2em;
    color:black;
    background-color: black;
}
section h2{
    font-size: 1.5em;
}
section p,section ul, section ul li{
    margin-right: 1em;
    margin-left: 1em;
}
section ul{
    list-style-type: none;
}
section ul li{
    display: flex;
    align-self: center;
    margin: 1em;
}
.list-icon{
    font-size: 2em;    
}
.list-link{
    color: white;
    text-decoration: none;
    padding: .4em;
}
.list-link:hover{
    color: white;
    text-decoration: none;
    background-color: #5133ab;
    border: 1px solid #5133ab;    
}
/* Projects section */
.projects-section{
    background-color: #8e77d4;
    background: linear-gradient(180deg, rgba(142,119,212,1) 0%,rgba(81,51,171,1) 100%);
}
.projects-section-filled{
    background: #3f5efb;
    border-radius: 1em;
    padding: 1em;
    font-size: 2.2em;
}
#carousel{
    margin:auto;
    padding-top: 1em;
    padding-bottom: 1em;
    width: 75vw;
}

/* Footer */
footer{
    min-height: 5vh;
    background-color:#5133ab;
    
}
.footer-hr{
    margin: 0;
    width: 90%;
}


/* Button Overrides */
.btn-secondary:hover{
    background-color: #4725ac;
    border-color: #4725ac;
}
.btn-secondary{
    background-color: #5133ab;
    border-color: #5133ab;
}
.btn{
    transition: background-color 1s;
}
/* Desktop */
.header-title{
    font-size: 500%;
}
/* Mobile Styles */
@media only screen and (max-device-width: 768px){
    .header-title{
        font-size: 300%;
    }
    .header-buttons{
        flex-direction: column;
    }
    section{
        width: 90vw;
    }
    section:hover{
        box-shadow: 15px 10px 5px #5133ab;
        width: 90vw;
    }
    .list-link{
        font-size: 65%;
        text-align: center;
    }
}
