@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
html, body {
    overflow-x: hidden; /* Prevents horizontal scrolling */
    width: 100vw; /* Ensures content doesn't extend past screen */
}

body {
    font-family: Montserrat;
    
}

header {
    position: sticky;  /* Makes the header sticky */
    top: 0;            /* Ensures it sticks to the top */
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
    margin-right: 55px;
    z-index: 1000;
    background-color: white;
    width: 100%;
    /* Keeps it on top of other content */
}



#home {
    width: 40px;
    display: block; /* Ensures proper alignment */
    margin-top: -12px;
    right: 0;
    /* Centers the image */
    transition: transform 0.4s ease-in-out; /* Smooth transition */
    cursor: pointer; /* Indicates it's clickable */
    transform-origin: center; /* Ensures rotation happens from the center */
    position: absolute;
    
    
}

#home:hover {
    transform: rotate(-90deg); /* Rotates 90 degrees left */
}

#logo {
    padding-top: 20px;
    width: 80px;
    padding-left: 11px;
}

#background-video {
    position: fixed; /* Ensures video stays fullscreen */
    top: 0;
    left: 0;
    width: 110vw; /* Full width */
    height: 210vh; /* Full height */
    object-fit: cover; /* Ensures video fills screen */
    z-index: -1;
}

a {
    font-size: .1rem;
}

.about {
    background-color: white;
    opacity: 80%;
    width: 50vh;
    margin-left: 12%;
    margin-top: 5%;
}

.about h1 {
    margin-left: 10%;
    margin-bottom: -32px;
    padding-top: 24px;
}

.about p {
    width: 83%;
    padding: 30px;
    font-size: 90%;
}

