*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
        0deg,
        #000000 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: -1;
}

nav{
    display: grid;
    grid-template-columns: 10% 1fr 1fr 10%;
    min-height: 10vh;
    color:black;
    align-items: center;
}

#logo{
    grid-column: 2/3;
    font-size: 24px;
}

section{
    display: flex;
    height: 80vh;
    justify-content: center;
    margin-top: 40px;
}

.hero{
    position: relative;
    height: 70%;
    width: 40%;
}

.hero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.headline{
    display: flex;
    justify-content: center;
    padding-top: 65vh;
    font-size: 48px;
    height: 100px;
    align-items: center;
    
}

.headline a{
    text-decoration: none;
    color: white;
}

.headline a:hover{
    color: rgb(212, 186, 120);
    font-size: 64px;
}
