html{
    background-color: #3D3A4B;
    font-family: 'Avernir Next', 'Segoe ui', Ubuntu,sans-serf;
}

/*
    Header
*/

h1{
    margin-top: 88px;
    margin-left: 10%;
    margin-bottom: 20px;
}

hr {
    width: 18%;
    margin-left: 1.2%;
    height: .25rem;
    margin: 0;
    background-color: #FCA311;
    border: none;
    border-radius: 10%;
    transition: .3s ease-in-out;
}

.menu-button:hover ~ hr {
    width: 18% !important;
    margin-left: 1.2% !important;
}

.projects-button:hover ~ hr {
    width: 24.5% !important;
    margin-left: 31% !important;
}

.projects-button:hover ~ hr {
    width: 23.8% !important;
    margin-left: 67.2% !important;
}

span{
    display:block;
}

.topSpan{
    font-size: 75px;
    color: #FCA311;
}

.bottomSpan{
    font-size: 50px;
    color: #F1C47B;
    }

/*
    navbar
*/

.navbar{
    display:flex;
    justify-content: flex-end;
}

.navbutton{
    font-weight: bold;
    margin-right: 30px;
    text-decoration: none;
    color: #e5e5e5;
    padding-right: 10px;
    padding-left: 10px;
}

.navbutton:hover{
    text-decoration: underline;
}

/*
    Bio
*/

.bio{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: white;
    margin-left: 10%;
    margin-right: 10%;
    padding: 8px;
    border-radius: 20px;
}

.p{
    font-size: 20px;
    margin-left: 15px;
    margin-right: 15px;
    line-height: 25px;
}

/*
    Footer
*/

.footer{
    position:fixed;
    bottom:0px;
}

.social-links{
    font-size: 30px;
}

.fa{
    color:white;
    text-decoration: none;
    margin: 10px;
}

/*
    BEGINNING OF CONTACT.HTML
*/

.main-container{
    width: 60%;
    margin-left: auto;
    margin-right: auto;

    height: 610px;
    background-color: #D1DBF0;
    margin-top: 100px;

    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
}

.sub-container{
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 10px;
    border-radius: 20px;
    text-align: center;
}

#email-form > * {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-top: 20px;
    border-radius: 20px;
    width: 90%;
    height: 40px;
    border: none;
    outline: none;
    padding-left: 10px;
    padding-right: 10px;
}

#message {
    resize: none;
    height: 340px;  
    padding: 10px;
}

button:hover{
    background-color: rgb(197, 197, 197)
}

.info .fa {
    color: #F1C47B;
}

.socialmedia .fa {
    font-size: 32px;
}

.info{
    padding-top: 100px;
}

.info a {
    text-decoration: none;
    color: black;
}

/*
    START OF PROJECTS.HTML
*/

.projects-title {
    color: #FCA311;
    font-size: 75px;
    margin: 40px;
    margin-left: 10%;
}

.container {
    width: 65%;
    max-width: 1200px;
    margin: 0 auto;
    /* border: 1px solid white; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.card-container{
    width: 30%;
    min-width: 350px;
    margin: 1%;
}

.card{
    height: 95%;

    background-color: white;
    border-radius: 12px;
    padding: 10px;
}

img {
    width: 100%;
    height: 200px;

    object-fit: cover;
    border-radius: 12px;
}

.project-name{
    font-size: 20px;
    font-weight: bold;

    margin: 5px;
}

.project-description{
    margin: 10px;
}

.card a {
    display: block;
    width: 50%;
    margin: 0 auto;

    background-color: #E5E5E5;
    border: 2px solid gray;
    text-align: center;
    text-decoration: none;
    color: black;

    padding: 5px;
    border-radius: 12px;

    font-size: 18px;
}

/* 
DEFAULT NAVBAR ON ABOUT
*/

.navbutton:hover{
    text-decoration: none;
}

