html {
    background-color: black;
    margin: 0;
    scroll-behavior: smooth;
}
body{
	width: 100%;
    margin: 0;
    font-family: 'Space Mono', monospace;
    background-color: black;
}


nav{
  margin: none;
  justify-content: space-between;
  padding: 30px 50px 20px 50px;
    position: sticky;
    top: 0;
    background-color: black;
     z-index: 1;
    transition-duration: 3s;
}

.nav-r{
    text-align: right;
}

nav img {
    max-width: 150px;
    position: relative;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition-duration: 3s;
    

    
}

.navbar-links ul{
    margin: 0;
    padding: 0;
    display: flex;
    overflow: hidden;
}

.navbar-links li{
    list-style: none;
}



nav a {
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.15em;
  
  display: inline-block;
  padding: 15px 20px;
  position: relative;
    display: block;
    
}

nav a:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

nav a:hover:after { 
  width: 100%; 
  left: 0; 
}

label {
    color: #fdfc8a;
    line-height: 70px;
    display: none;
    font-size: 35px;
}

#toggle {
    background-color: white;
    display: none;
}


.menu {
    display: flex;
    flex-direction: row;
}
.icon-nav {
  display: none;
}

a{
	color: #fdfc8a;
	text-decoration: none;
	cursor: pointer;
	
}

p{
    color: white;
    font-size: 16px;
}

h1{
    color: black;
    font-size: 28px;
    font-weight: 200;
}


h2{
    color: white;
    font-size: 24px;
    font-weight: 100;
}

section{
    padding: 100px;
    display: flex;
}

#banner {
    min-height: 600px;
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#about{
    background-color: #E2E2DD;
    align-items: center;
    flex-direction: row;

}

.txt-about{
    padding-right: 100px;
}

#anim-banner {
    max-width: 80%;
    margin: 0 auto;
}

#anim-birdy {
    max-width: 10%;
    padding-bottom: 50px;
    position: absolute;
    top: 550px;
}

#anim-about {
    max-width: 60%;
    margin: 0 auto;
}

#process {
        flex-direction: column !important;

}

#process h2{
    text-align: center;
    font-size: 20px;
    padding: 0px 100px 0px 100px;
    margin: 0;
}

#anim-process {
    max-width: 90%;
    margin: 0 auto;
}

.process-icons{
    display: flex;
    flex-direction: row;
    margin: 80px 50px 80px 50px;
    justify-content: space-between;
}
.icon {
    max-width: 120px;
    padding: 20px 50px 0 50px;
}

#contact {
    display: flex;
    flex-direction: column;
    background-color: #E2E2DD;
    align-items: center;
    text-align: center;
    padding: 100px 0 100px 0;
}

#contact h1{
    font-size: 40px;
        font-weight: 700;

}

#contact h2{
    color: #f8ee49;
    font-size: 30px;
    background-color: black;
    padding: 20px;
}

#contact p{
    color: white;
    font-size: 20px;
    padding: 20px;
    margin: 0;
}

#contact p:hover {
    color: #f8ee49;
    
}

address{
      font-style: normal;
       background-color: black;
    min-width: 100%;
    transition: all 1s;
    text-align: center;
}

address:hover {
      font-style: normal;
       background-color: black;
    transition: all 1s;
    text-align: center;
}



footer {
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    text-align: right;
}

footer img {
    max-height: 150px;
    margin: 20px;
}

footer h2{
    color:  #fdfc8a;
    font-weight: 700;
}

.linkedin {
    display: flex;
    align-items: center;
    padding-right: 25px;
}
.social img {
    max-width: 20%;
}


footer a {
    color: white;
}

footer a:hover {
    color: #fdfc8a;
}



/* FONTS */

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');


/* MEDIA QUERIES */

@media (max-width: 768px) {
    #about {
        flex-direction: column;
        text-align: center;
    }
    #anim-about {
    max-width: 100%;
    margin-top: 20px;
    }
    
    .txt-about{
    padding-right: 0;
    }
    
    
    #anim-banner {
    min-width: 100%;
        overflow: hidden;

    }
    
 
    section {
            padding: 20px;
        min-height: 500%;
    }
    .process-icons{
    flex-direction: column;
    align-items: center;
    margin: 0;
    }
    .icon{
            margin: 20px 0 20px 0;
    }
    #process h2{
    padding: 10px;
    }
    
    
    .navbar {
        flex-direction: row;
        align-items: flex-start;
        transition-duration: 3s;

    }
   
    
    label {
        display: block;
        cursor: pointer;
    }
    
    .menu {
        text-align: center;
        width: 100%;
        flex-direction: column;
        display: none;
        transition-duration: 3s;
    }
    
    .menu a {
        margin: 0;
        padding: 20px 0 20px 0;
        text-align: right;
        font-size: 24px;
        font-weight: 400;
        transition-duration: 3s;

    }
    
    #toggle:checked + .menu {
        display: block;
        font-weight: 700;
    }
    
    .hide{
        display: none;
    }
    
    .message {
        width: 100%;
    }
    
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 50px;
    }
    footer img {
    max-height: 300px;
    margin-bottom: 20px;
    padding: 0;
}
    
    #contact p{
    color: #f8ee49;
    font-size: 14px;
    background-color: black;
    padding: 20px;
}
    
    #banner{
        padding-top: 50px;
        align-items: center;
        min-height: 450px;

    }
    
    #anim-birdy {
    max-width: 25%;
    padding-bottom: 0;
    position: absolute;
    top: 450px;
}
    
    address{
    padding: 0;
    width: 100%;
    transition: all 1s;
    text-align: center;
    overflow: hidden;
}
 


    
    
}
    