*{
    background-color: black;
    padding: 0;
    color: white;
    font-family: 'Roboto', sans-serif;
}
.header {
    overflow: hidden;
    padding: 20px 10px;
}
.header a {
    float: left;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 16px; 
    font-weight: lighter;
    line-height: 25px;
    animation: fadeout 0.8s;
    border-bottom: 2px solid black;
}
.header a.logo {
    font-size: 25px;
    font-weight: bold;
}
.header .header-right a:hover {
    border-bottom: 2px solid white;
    animation: fadein 0.5s ease-in;
}
@keyframes fadein{
    from{
        border-bottom: 2px solid black;
    }
    to{border-bottom: 2px solid white;}
}
@keyframes fadeout{
    from{
        border-bottom: 2px solid white;
    }
    to{border-bottom: 2px solid black;}
}
  
.header-right {
    float: right;
}
  
@media screen and (max-width: 500px) {
    .header a {
      float: none;
      display: block;
      text-align: left;
}
.header-right {
    float: none;
}
}

.title{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
}
.title h1{
    text-align: center;
}
.title .text-logo div{
    width: 60px;
    height: 60px;
    margin: 10px;
    border: solid 2px white;
}

.mid-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.mid-content h2{
    font-size: 36px;
    text-align: center;
}
.project-content{
    display: flex;
    width: 50%;
    height: 350px;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
}
.project-content .showcase{
    margin: 15px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    border: 2px solid white;
}
.project-content .showcase a{
    text-decoration: none;
    font-size: 18px;
}
.project-content .showcase a:hover{
    animation: showup 0.3s;
}
@keyframes showup{
    from{font-size: 18px;}
    to{font-size: 28px;}
}
.about-content{
    height: 120px;
    width: 40%;
    display: flex;
    align-items: center;
    text-align: justify;
    font-size: 18px;
}
.contact-content{
    margin: 40px;
    display: flex;
    align-items: center;
    height: 20px;
}
.contact-content a{
    font-size: 18px;
    text-align: center;
    text-decoration: none;
}
.follow-content{
    height: 20px;
    margin-bottom: 100px;
}
.fa{
    padding: 15px;
    font-size: 28px;
    text-decoration: none;
    text-align: center;
}

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    bottom: 0;
    height: 60px;
    text-align: center;
}


/* ANIMATIONS */

/*ANIMATIONS*/
