* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    overflow-x:hidden;
    scrollbar-width: thin; 
    scrollbar-color: #ffffff #1f2123;
}
::-webkit-scrollbar {
  width: 8px; 
  height: 4px; 
}

::-webkit-scrollbar-track {
  background: #f3f4f6; 
  border-radius: 999px;
}

::-webkit-scrollbar-thumb {
  background: #9ca3af; 
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover{
    background: rgb(0, 119, 255);
}
body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    height:auto;
    margin:0;
    padding:0;
    background-color:#0e0f17;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

header {
    padding: 1% 2%;
    background-color: #000;
    width: 100%;
}
.nav-bar {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    background-color: #000;
    width: 100%;
}

.logo {
    font-size: clamp(1rem, 2.1vw, 1.1rem);
    font-weight: bold;
    color: white;
    text-decoration: none;
}
nav ul {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

nav a {
    color: white;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 300;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #575757;
}

.mainContainer {
    height: 120vh;
    
    background: url('steam.jpg') center/cover no-repeat;
    color: white;
    text-align: center;


}

.form{
    padding-top:10vh;
    width:70%;
    margin-left:15%;
}

.contact {
    margin-top:10%;
    padding: 2rem 1rem;
    background-color: #1d2129;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
}

.contact p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 1rem;
    width: 100%;
}
