

.userArea{
    top:0;
}

.topnav{
    top: 50px;
}

.hero{
    position: relative;
    min-height: 500px;
    width: 100%;
}

.hero h1{
    position: absolute;
    top: 45%;
    left: 25%;
    right: 25%;
    font-size: clamp(1rem, 4vw, 4.5rem);
    letter-spacing: .17rem;
    color: black;
    text-align: center;
    margin: 0 auto;
}

.hero figure{
    width: 70%;
    height: auto;
}

.hero img{
    width: 100%;
    height: auto;
}


/*
Cookie area
*/

.cookieSection{
    display: block;
    height: 150px;
    min-width: 50%;
    position:fixed;
    top: -150px;
    left: 46%;
    transform: translateX(-46%);
    margin: 0 auto;
    background-color: #ff8a37;
    padding: 2rem 0;
    border-radius: 5rem 5rem;
    opacity: 0;
    z-index: 2;
}

.cookieSection p {
    width: 100%;
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.3rem); 
    word-wrap: break-word;
}

.accept{
    font-size: 1.1rem;
    border: none;
    min-width: 25%;
    text-decoration: none;
    padding: .5rem 1.5rem;
    background-color: #6700c7;
    color: white;
    letter-spacing: .1rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}



.accept:hover{
    background-color: #888888;
    cursor: pointer;
}

.cookieClose{
    font-size: 2rem;
    border: 0;
    min-height: 50px;
    min-width: 50px;
    background-color: #dfdfdf;
    color:#cb7335;
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-weight: bold;
    border-radius: 50% 50%;
    transform: translate(-20px, -40px);
    outline: 1px solid black;
}

.cookieClose:hover{
    color: #dfdfdf;
    background-color: #cb7335;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .cookieSection p {
        width: 70%;
        margin: 0 auto;
    }
    .cookieSection{
        height: 200px;
    }
}





.loadMoreArea{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.loadMoreArea button{
    border: none;
    padding: .7rem 2rem;
    background-color:#410000;
    color: white;
}

.loadMoreArea button:hover{
    background-color: #fccaca;
    color: black;
    outline: 1px solid black;
    cursor: pointer;
}

@media only screen and (max-width: 800px) {
    .hero figure{
        width: 100%;
    }
    .hero h1{
        top: 40%;
        transform: translateY(-40%);
        left: 25%;
        right: 25%;
        z-index: 1;
    }

}

@media only screen and (max-width: 550px) {
    .hero{
        min-height: fit-content;
    }
}


