* {
    margin: 0;
    padding: 0;
  }

body {
    background-color: #ECE8E2;
}

.fira-sans-light {
    font-family: "Fira Sans", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .fira-sans-light-italic {
    font-family: "Fira Sans", sans-serif;
    font-weight: 300;
    font-style: italic;
  }

  .fira-mono-regular {
    font-family: "Fira Mono", monospace;
    font-weight: 400;
    font-style: normal;
  }  

.content{
    max-width: 1440px;
    display: flex;
    flex-direction: row;
}

.text {
    display: flex;
    flex-direction: column;
    height: 100vH;
}

#line {
 width: 15%;
 border-right: 1px solid #D4D1CB;
 height: 100vh;
}


h1 {
    text-transform: uppercase;
    color: black;
    letter-spacing: 5px;
    font-size: 15px;
    font-family: "Fira Sans", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.head {
    display: flex;
    flex-direction: row;
    padding-top: 40px;
}

.city {
    color: #A29A8F;
    font-family: "Fira Sans", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 15px;
}

.pin {
    padding: 0 8px 0px 16px;
}

h2 {
    font-family: "Fira Mono", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 56px;
    color: black;
    letter-spacing: -2px;
}

.content-text{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

a{
    color: #8C8882;
    font-family: "Fira Mono", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    padding-right: 32px;
}

.links {
    padding-top: 32px;
}

a:hover{
    color: black;
    font-family: "Fira Mono", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    padding-right: 32px;
    transition: all ease-in-out 0.4s ;
}


#form {
    background-color: #DCFF40;
    width: 504px;
    height: 504px;
    filter: blur(80px);
    position: absolute;
    right: -15%;
    top: 25%;
    z-index: -1;
}

.title {
    display: flex;
    flex-direction: row;
}

.title img {
    position: relative;
    right: 40px;
    top: -160px;
    width: 130px;
}

@media screen and (max-width: 768px) {
    h2 {
        font-family: "Fira Mono", monospace;
        font-weight: 400;
        font-style: normal;
        font-size: 40px;
        color: black;
        letter-spacing: -2px;
    }
    #form{
        background-color: #DCFF40;
        width: 200px;
        height: 200px;
        filter: blur(80px);
        position: absolute;
        right: 0;
        bottom: 0;
        top: inherit;
        z-index: -1;
        display: none;
    }
    h1 {
        text-transform: uppercase;
        color: black;
        letter-spacing: 3px;
        font-size: 13px;
        font-family: "Fira Sans", sans-serif;
        font-weight: 300;
        font-style: normal;
    }
    .city {
        color: #A29A8F;
        font-family: "Fira Sans", sans-serif;
        font-weight: 300;
        font-style: italic;
        font-size: 14px;
    }
    .pin {
        padding: 0 8px 0px 16px;
        width: 12px;
    }
    a {
        color: #8C8882;
        font-family: "Fira Mono", monospace;
        font-weight: 400;
        font-style: normal;
        font-size: 15px;
        text-transform: uppercase;
        text-decoration: none;
        padding-right: 32px;
    }
    }