@font-face {
    font-family: 'Quicksand';
    src: url(../Quicksand/Quicksand-VariableFont_wght.ttf) format("truetype");
    font-display: swap;
    font-weight: 300 700;

}

*{
    padding: 0;
    border-radius: 0;
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    font-family: 'Quicksand';
    overflow-x: hidden;
}

#login{
    background-color: green;
    border-radius: 50px;
    padding: 5px;
}

#login>a{
    background-color: green;
    border-radius: 50px;
    padding: 5px;
    color: aliceblue;
}

h1{
    color: #2e3192;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    margin-bottom: 4rem;   
}

/* Style for the header */
.header {
    position: sticky;
    display: flex;
    justify-content: space-between; /* Space between the logo and the navigation menu */
    align-items: center;
    height: 70px;
    padding: 0 40px; /* Add some padding to the sides */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

/* Style for the logo */
.logo {
    display: flex;
    align-items: center;
    margin-left: 139px;
}

.logo img {
    width: 100px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    max-height: 50px; /* Optional: Set a maximum height */
}

/* Style for the navigation menu */
.header ul {
    list-style: none;
    display: flex;
    gap: 20px; /* Space between menu items */
    margin: 0;
    padding: 0;
}

.header ul li {
    display: inline;
    align-content: center;
}

.header ul li a {
    text-decoration: none;
    color: #43008B;
    font-family: 'Quicksand';
    font-size: 14px;
    font-weight: bold;
}


.hero>img{
    width: 100%;
    height: 100%;
    position: absolute;
}

#hero-img{
    position: absolute;
    height: 80vh;
    top: 70px;
    left: -100px;
    z-index: -1;
}

.hero-text{
    font-size: 4em;
    color: aliceblue;
    font-family: quicksand;
    font-weight: bold;
}

.hero{
    align-self: center;
    margin-top: 10em;
    width: 50%;
    margin-left: 11em;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}