@font-face {
    font-family: "iA Writer Quattro S";
    src:  url("./iAWriterQuattroS-Regular.woff") format("woff")
}

*{
    font-family: 'iA Writer Quattro S', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}


html{
    min-height: 100%;
    min-width: 100%;
}

body{
    max-height: 100%;
    min-width: 320px;
    width: 100%;
    margin: 0;
    overflow-x: auto;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0px;
    background-color: rgb(47, 52, 55);
}

#header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

#logo{
    margin-right: 10px;
}

#title{
    text-align: center;
    font-weight: lighter;
}

#menu{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
}

.menu-link{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: auto;
    font-size: 1em;
    font-weight: bolder;
    background-color: rgb(243 243 243 / 90%);
    color: rgb(47, 52, 55);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
    margin: 15px 15px 15px 15px;
}

.menu-link:hover{
    /*color: rgb(243 243 243 / 90%);*/
    background-color: #ade398;
}

.menu-icon{
    width: 40px;
    height: auto;
    fill: rgb(47, 52, 55);;
    margin-right: 10px;
}

.seperator{
    min-width: 70%;
    border-top: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.9);
    margin-top: 25px;
    margin-bottom: 20px;
}

#projects{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
}

.project-container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 275px;
    height: 350px;
    background-color: rgb(243 243 243 / 90%);
    color: rgb(47, 52, 55);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
    margin: 15px 15px 15px 15px;
}

.project-container:hover{
    background-color: #ade398;
}

.project-title{
    color: inherit;
    margin: 0px;
    margin-bottom: 10px;
    text-align: center;
}

.project-image-container{
    min-height: 175px;
    max-height: 175px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.project-image{
    max-width: 100%;
    max-height: 100%;
    height: auto;
}

.project-description{
    width: 95%;
    text-align: center;
    color: inherit;
    margin: 0px;
}


#archived-projects{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
}

.archived-project-container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 275px;
    height: 200px;
    background-color: rgb(243 243 243 / 90%);
    color: rgb(47, 52, 55);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
    margin: 15px 15px 15px 15px;
}

.archived-project-container:hover{
    background-color: #ade398;
}

#contact-form{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 520px;
    width: 100%;
    padding:10px;
}

#contact-info{
    text-align: center;
}

#contact-email{
    margin-bottom: 10px;
    font-size: large;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#contact-email-icon{
    width: 25px;
    height: auto;
    fill: rgb(243 243 243 / 90%);
    margin-right: 10px;
}

#cv-link{
    text-decoration: underline;
}

#cv-link:hover{
    text-decoration: none;
    color: #ade398;
}

#form-top{
    width: 100%;
}

#form-email{
    width: 85%;
}

#form-center{
    width: 100%;
}

#form-name, #form-subject{
    min-width: 245px;
}

.form-input{
    background-color: rgba(255, 255, 255, 0.9);
    color: rgb(47, 52, 55);
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
}

.form-input:focus {
    outline: none !important;
    border:1px solid #ade398;
}

#form-message{
    min-height: 150px;
    width: 100%;
}

.form-submit-button{
    color: rgb(47, 52, 55);
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 2px;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
}

.form-submit-button:hover{
    background-color: #ade398;
}

#footer{
    margin-top: 15px;
    margin-bottom: 10px;
}