
:root {
    --black-950: #000000;
    --background-color: var(--black-950);  
}
body {
    background: var(--background-color);
    font-family: Inter;
}

::-webkit-scrollbar {
  width: 0px;
}

section.home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

div.hero-image {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: none;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

div.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
h1 { position: absolute;

    transform: translateX(-50%);transform: translateY(-50%); color: #fff; font-size: 5rem; z-index: 9999;text-shadow: 0px 3px 5px #ccc;}
