 body {
     background-color: #0a0a0a;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     height: 100vh;
     margin: 0;
     font-family: 'Inter', sans-serif;
     color: white;
     text-align: center;
    }
 
 h1 {
     font-size: 4rem;
     font-weight: 900;
     letter-spacing: -2px;
     margin-bottom: 20px;
     background: linear-gradient(
         to bottom, 
         #BF953F, 
         #FCF6BA, 
         #B38728, 
         #FBF5B7, 
         #AA771C
        );
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
      filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.3));
    }
 
 .contact {
     font-size: 1.2rem;
     color: #AA771C; /* Mahedam kuldne kontakti jaoks */
     text-decoration: none;
     letter-spacing: 2px;
     font-weight: 300;
     margin-top: 40px;
     border-top: 1px solid #333;
     padding-top: 20px;
     transition: 0.3s;
    }
 
 .contact:hover {
      color: #FCF6BA;
    }
 
 p {
     font-size: 1rem;
     color: #666;
     text-transform: uppercase;
     letter-spacing: 5px;
    }