@import url('https://fonts.googleapis.com/css2?family=Gupter:wght@400;500;700&family=Marcellus&family=Prata&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');
* {
    margin:0;
    padding: 0;
}
html {scroll-behavior: smooth; transition: 0.3s;}
html, body { max-width: 100%; overflow-x: hidden;} 
body {
    font-family: "Gupter", serif;
    width: 100vw;

    background-color: #c7c7c7;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
.project-img {
    max-width: 40vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}
.scroll-down-indicator {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    padding: 2px;
    color: white;
    background-color: #050505;
}
.name {
    padding-left: 10vw;
    padding-top: 40vh;
    font-size: 55px;
    font-weight: 500;
}
.section {
    display: flex;
}
.about-paragraph {
    margin: 0 100px 20px 0;
    font-size: 25px;
}
.about-headline {
    font-size: 30px;
    font-weight: 600;
}
.sub-section {
    min-width: 10vw;
    margin: 40px 40px 0 40px;
}
.project-headline {
    font-size: 30px;
    font-weight: 600;
}
.project-paragraph {
    margin: 5px 0px 10px 0;
    padding-left: 95px;
    text-indent: -95px;
}
.project {
    margin: 0 70px 30px 0px;
    font-size: 20px;
}
.project-name {
    font-size: 35px;
    font-weight: 500;
    margin: 10px 10px 10px 0;
}
.tech {
    font-family: Consolas, monaco, monospace;
    font-size: 21px;
}
.link {
    font-size: 19px;
    color: 050505;
    margin: 0;
    padding: 0 3px;
}
.link:hover {
    background-color: #050505;
    color: white;
}
svg {transform: translateZ(0);}
.houses {
    position: relative;
    width: 100%;
    height: 100vh;
  }
.layer{
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
    object-fit:cover;
}
.l3 {z-index: -3;}
.l1 {z-index: -1;}
#cloud_container {
    width: 100vw;
    height: 100vh;
    z-index: -2; 
    position: absolute;
    opacity: 0.7;
    background: url('../static/cloud.png');
    background-size:cover;
    animation: animate 70s linear infinite;
}
@keyframes animate {
    0%
    { background-position: 0px;}
    100% 
    {background-position: 5440px;}
}
#nav { 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
  }
#nav li {
    list-style: none;
    margin: 10px 15px;
    letter-spacing: 0.1em;
    text-align: center;
  }
#nav > li > a {
    font-size: 22px;
    opacity: 0.8;
    text-decoration: none;
    color: #050505;
  }
#nav > li > a:hover {
    opacity: 1;
    color: white;
}
.intro {
    position: absolute;
    top: 45vh;
    left: 5vw;
    text-align: left;
    line-height: 1;
    z-index: -2;
    animation: float 3s ease-in-out infinite alternate; 
  }
@keyframes float {to{ transform: translateX(7%);}}
.intro p {
    font-size: 2vw;
    color: black;
    text-align: center;
}
h3.header {
    /* font-size: 6vw; */
    font-size: 5vw;
    font-weight: 400;
    color: black;
}
  
.scroll {
    z-index: 1;
    font-size: 16px;
    letter-spacing: .05em;
    text-decoration: none;
}
#landing a {
    z-index: 2;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    color:black;
}

#landing a span {
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: 18px;
    height: 18px;
    margin-left: -9.5px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(-45deg);
    animation: arrowdown 2s infinite;
}
@keyframes arrowdown {
    0% {transform: rotate(-45deg) translate(0, 0);}
    20% {transform: rotate(-45deg) translate(-10px, 10px);}
    40% {transform: rotate(-45deg) translate(0, 0);}
}
