*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}
nav{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: absolute;
    top: 8px;
    width: 1000px;
    height: 50px;
    backdrop-filter: blur(10px);
    border-radius: 1dvh;
    box-shadow: 1px 1px 10px white;
}
nav ul{
    display: flex;
    gap: 3em;
}
nav ul li {
    list-style: none;
}
nav ul li a{
    color: white;
    text-decoration: none;
    font-size: 1em;
}
nav ul li a:hover{
    color: lightgreen;
}
.logo{
    width: 3%;
    height: auto;
    color: blue;
    border-radius: 50px;
}
.hero{
    width: auto;
    height: 110vh;
    padding: 1em;
    background-image: url(bigimage.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgb(red, green, blue)(0, 0, 0, 0.4);
    background-blend-mode: darken;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.text{
    width: 60px;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1em
}
.text h1{
    color: white;
    font-size: 5em;
}
.text span{
    color: gold;
    animation-name: text;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}
@keyframes text{
    0%{color: darkcyan;}
    25%{color: yellow;}
    50%{color: lightgreen;}
    75%{color: yellow;}
    95%{color: green;}
    100%{color: darkcyan;}
}
.text p{
    color: white;
    font-size: 1.1em;
    text-align: center;
}
.text button{
    padding: 0.5em 2em;
    margin: 2em 0 0 0;
    background-color: darkcyan;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.5em;
    box-shadow: 1px 1px 3px darkcyan;
    transition: all .3s ease-in-out;
}
.text button:hover{
    box-shadow: black;
    transform: scale(1.1)
}
