* {
    box-sizing: border-box;
    scroll-behavior: smooth;
  }

  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(fonts/raleway-regular.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

body {
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}

.content {
    position: relative;
    width: 100%;
    min-height: 110vh;
    background-image: url(./assets/desktop.jpg);
    background-size: cover;
    background-position: center, center;
    z-index: 2;
}

.content .box {
    position: absolute;
    top: 30%;
    right: 10%;
    text-align: center;
}

.content .box h2 {
    position: relative;
    font-family: "Raleway";
    font-weight: 400;
    font-size: 3vw;
    border: 2px solid black;
    padding: 8px;
}

.content .box h3 {
    font-family: "Raleway";
    font-weight: 200;
    font-size: 1.5vw;
    padding: 8px;
    text-align: end;
}

.footer {
    display: flex;
    font-family: "Raleway";
    font-size: 1.5vh;
    position: fixed;
    top: 80%;
    /* left: 30vw; */
    right: 10%;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    min-height: fit-content;
 

  
  }

  .footer .mail {
      display: flex;
      width: max-content;
      align-items: center;
      white-space: nowrap;
      
  }

  .footer .phone {
    display: flex;
    width: max-content;
    align-items: center;
    white-space: nowrap;
    margin-left: 10%;
    
}

.footer .address {
    display: flex;
    width: max-content;
    align-items: center;
    white-space: nowrap;
    margin-left: 10%;
    
}

.footer div div {
    padding-left: 2%;
    
}



  .footer img {
    
    min-height: 25px;
    height: 2.5vh;
    width: 2.5vw;

  }



  @media screen and (max-width: 865px) {
    .content {
        background-image: url(./assets/mobile.jpg);
        background-attachment: local;
        background-size: cover;
        background-position: bottom, center;
        height: 100vh;
    }

    .content .box {
        position: absolute;
        top: 20%;
        left: 10%;
        right: 10%;
    }

    .content .box h2 {
        font-family: "Raleway";
        font-weight: 400;
        font-size: 4vw;
        border: 2px solid black;
        padding: 8px;
    }

    .content .box h3 {
        font-family: "Raleway";
        font-weight: 200;
        font-size: 3vw;
        padding: 8px;
        text-align: end;
    }

    .footer {
        top: 85%;
        right: 5%;
        flex-direction: column;
        font-size: 12px;
        align-items: flex-end;
    }

    .footer img {
        height: 25px;
        width: 25px;
    }
    
}