html {
    font-size: 16px;
}

body {
    margin: 0px;
    background-color: #1E1E1E;
}

body * {
    font-family: 'Courier New', monospace;/* if consolas isn't available*/
    font-family: Consolas, monaco, monospace;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    background-color: #282828;
}

.navbar * {
    font-size: 2rem;
}

.navbar button {
    background-color: #404040;
    text-align: center;
    padding: 15px;
    padding-left: 0px;
    padding-right: 0px;
    border-style: solid;
    border-color: #303030;
    border-width: 0px;
    color: white;
    
    cursor: pointer;
    width: 33%;
}



.navbar button.homejs {
    border-right-width: 1px;
    width: 8%;
    transition: 0.4s;
}

.navbar button.homejs span {
    color: #efd63e;
}

.navbar button.homejs:hover {
    width: 25%;
}

.navbar button.homejs:hover span:after {
    content: '\00a0Home';
}




.navbar button.projectscss {
    color: #70C38D;
    border-right-width: 1px;
    border-left-width: 1px;
}

.navbar button.projectscss span {
    color: #519ABA;
}

.navbar button.contactshtml {
    color: #E2C08D;
    border-left-width: 1px;
}

.navbar button.contactshtml span {
    color: #E17833;
}

.main {
    text-align: center;
    padding-top: 50px;
    font-size: 3rem;
}

.main h1 {
    overflow: hidden;
}

.main h1.anime{
    padding-top: 150px;
}

.main p.desc {
    padding-left: 10%;
    padding-right: 10%;
    margin-top: 70px;
    color: #bfbfbf;
    text-align: left;
    opacity: 0;
    animation: opacityup;
    animation-duration: 1s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}
.main p.projdesc {
    padding-left: 10%;
    padding-right: 10%;
    text-align: left;
    color:#bfbfbf;

}

.github-link, .github-link *{
    opacity: 0;
    animation: opacityup;
    animation-duration: 0.6s;
    animation-delay: 1.8s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

@keyframes opacityup {
    from {
        opacity: 0;
        transform: translateY(3rem);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

#typecontact {
    color: grey;
    text-align: left;
    font-size: 5rem;
}

#typecontact2{
    color: grey;
    text-align: left;
    font-size: 5rem;
    margin-bottom: 0px;
}

#typeproj {
    color: #E2C08D;
    text-align: left;
}

form {
    background-color:#303030;
    color:#bfbfbf;
    padding: 20px;
    max-width: 600px;
}
.contact-form > div{
    width: 100%;
    font-size: 2rem;
    margin-bottom: 6px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


form input {
    width: 100%;
    border: none;
    background-color: #303030;
    border-bottom: 2px solid #1E1E1E;
    color:#efd63e;
    /*font-family: monospace;*/
    font-size: 2rem;
}

form label {
    color:#6089B4;
    font-size: 2rem;
    flex: auto;
    padding-right: 1rem;
}

form textarea {
    color:#efd63e;
    margin-top: 4px;
    width: 99%;
    height: 150px;
    resize: vertical;
    background-color: #303030;
    border:none;
    border-bottom: solid 2px #1E1E1E;
    font-size: 2rem;
}

.send-div button {
    color:#70C38D;
    cursor: pointer;
    width: 20%;
    background-color: #303030;
    border: solid 2px #1E1E1E;
    margin-left: 80%;
    margin-right: 0;
    font-size: 2rem;
}

.contact-form {
    opacity: 0;
    animation: opacityup;
    animation-duration: 0.7s;
    animation-delay: 1.2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

.form-div {
    display: flex;
    flex-direction:  row;
    justify-content: flex-start;
}

.contact-icons {
    padding-top:1rem;
    width: 29%; 
    display:flex; 
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: center;
    opacity: 0;
    animation: opacityup;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 1.1s;
    animation-duration: 0.7s;
}

.contact-icons > * {
    
    margin: 1rem 0rem;
}
/*
.icon-1, .icon-1 *{
    
}
.icon-2 {
    animation-delay: 1.3s;
}
.icon-3 {
    animation-delay: 1.5s;
}
*/
@media only screen and (max-width: 806px) {
    /* For smaller screens / phones: */
    html{
        font-size: 12px;
    }
    .form-div {
        flex-direction: column;
    }
    .contact-icons {
        padding-top:0rem;
        width: 100%;
        flex-direction:row;
        justify-content: center;
        order: 2;
    }
    .contact-icons > * {
        margin: 1rem 1rem 0rem 1rem;
    }
    #typecontact2 {
        margin-top: 2rem;
    }
    #typeproj {
        font-size: 4rem;
    }
    .main h1.anime{
        margin-top:0px;
        padding-top:0px;
    }
    .navbar {
        flex-direction: column;
    }
    .navbar * {
        font-size:3rem;
    }
    .navbar button {
        width: 100%;
    }
    .navbar button.homejs {
        width: 100%;
    }
    .navbar button.homejs:hover {
        width: 100%;
    }
    
    .navbar button.homejs span:after {
        content: '\00a0Home';
    }
    .send-div button {
        margin-left:0px;
        min-width:53px;
        width:50%;
    }

}
@media only screen and (min-width: 1250px) {
    /* For larger screens: */
    .navbar *{
        font-size: 3rem;
    }
}
