nav{
    background-color: #4e5f5e;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 10px;
}

nav a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    background-color: rgb(0, 0, 0);
    padding: 5px;
    margin: 5px;
    border-radius: 10px;
    
}

nav a:hover{
    transform: scale(1.1);
    background: linear-gradient(135deg, #4e5f5e, rgba(255, 255, 255, 0.753), #586667);
    color: black;
}

.hero3 {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('../BILDER/_DSC0043\ –\ Kopi.JPG');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    overflow: hidden;
}

.hero3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(78, 95, 94, 0) 0%,
        rgba(78, 95, 94, 0.5) 60%, 
        rgba(78, 95, 94, 0.9) 100% 
        );
    z-index: 2;
    pointer-events: none;
}

h1{
    margin-top: 40px;
    text-align: center;
    font-size: 100px;
    color: white; 
    font-family: 'Times New Roman', Times, serif;
}