body {
    background-color: #000000;
}

* {
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #f3efd5;
    font-family: "Philosopher", sans-serif;
    font-weight: 1000;
    font-style: normal;
}

h1 {
    font-size: 20rem;
}

h2 {
    font-size: 3rem;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    color: #f3efd5;
}

h3 {
    color: #f3efd5;
    font-family: "Raleway", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1.4rem;
}

a{
    text-decoration: none;
    padding: 0;
    margin: 0;
}

#title {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    mix-blend-mode: multiply;
    z-index: -1;
}

video {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#navbar {
    position: absolute;
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 1rem;
    top: 0;
}

#scroll-ind{
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding-bottom: 3rem;
    width: 100%;
}

#sub-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.svg-image {
    width: 6rem;
    position: absolute;
    bottom: 5rem; /* Adjust bottom spacing as needed */
    left: 50%; /* Position it horizontally in the center */
    transform: translateX(-50%); /* Adjust to horizontally center */
}

/* Media queries for mobile */
@media only screen and (max-width: 767px) {
    h1 {
        font-size: 5rem; /* Adjust size for mobile */
    }

    h2 {
        font-size: 1.5rem; /* Adjust size for mobile */
    }
    h3{
        font-size: 1rem;
    }

    #navbar {
        gap: 2rem;
    }
    .svg-image{
        width: 6rem;
    }
}

/* Media queries for tablets */
@media only screen and (min-width: 768px) and (max-width: 1550px) {
    h1 {
        font-size: 7rem; /* Adjust size for tablets */
    }

    h2 {
        font-size: 2.5rem; /* Adjust size for tablets */
    }
    .svg-image{
        width: 10rem;
    }
}