html,
body {
    background-size: cover;
    width: 100%;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
}

#cover-image {
    position: absolute;
    top: -200px;
    width: 100%;
}

#explore-button {
    position: absolute;
    top: 68vw;
    left: 50vw;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 100px;
    background-color: lightyellow;
    border: 10px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    transition: 0.1s ease-out;
}

#explore-button:hover {
    background-color: lightyellow;
    border: 15px solid yellow;
    transition: 0.1s ease-out;
}

.back {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 15%;
    padding: 20px;
    font-size: 40px;
    background-color: yellow;
    color: blue;
}

.back:hover {
    background-color: lightyellow;
}

.effect {
    fill: white;
    opacity: 0.2;
    transition: all 0.13s linear;
}

.effect:hover {
    opacity: 0.5;
}

.no-effect {
    fill: black;
    opacity: 0;
}

.cover-photo {
    position: absolute;
    x: 0;
    y: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
