 body {
    font-family: "Stack Sans Headline", sans-serif;
     background-color: #21201e;
     margin: 0;
     padding: 0;
    .container {
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
         max-width: 800px;
         margin: 0 auto;
         text-align: center;
         > img {
            width: 200px;
         }
                  h1 {
                      color: #fff;
                      font-size: 3vw;
                      .orange {
                    background: linear-gradient(135deg, #f26522, #ff8a50);
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        background-clip: text;
                      }
                  }

                  .contact {
                    display: flex;
                    gap: 30px;
                  }
                  a {
                    font-family: "Stack Sans Headline", sans-serif;
                    color: rgba(250,250,250,0.8);
                    text-decoration: none;
                    font-size: 1.5vw;
                    transition: all 0.3s ease-in-out;
                    i {
                        background: linear-gradient(135deg, #f26522, #ff8a50);
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        background-clip: text;
                        margin-right: 10px;
                    }
                    &:hover {
                        color: white;
                    }
                  }
     }
 }

 @media (max-width: 768px) {
     body .container {
         h1 {
             font-size: max(20px, 3vw);
         }
         .contact {
            flex-direction: column;
            padding: 0 3vw;
            gap: 15px;
            margin-top: 20px;
         }
         a {
             font-size: max(16px, 1.5vw);
             i {
                margin-right: 5px;
             }
         }
     }
 }

