html {
    /*background-color: #eaa65e;*/
    background: linear-gradient(109.6deg, rgb(10, 17, 44) 11.2%, rgb(0, 0, 0) 51.2%, rgb(25, 51, 80) 98.6%);
    width: 100%; /* 100%*/
    height: 100%;
    font-family: "impact";
    color: #ffffff;
}

h1 {
    display: flex;
    justify-content: center;
    font-size: 50px;

}

.link {
    color: #ee2c83;
}


footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 50px;
    gap: 30px
}

header {
    font-size: 40px;
    display: flex;
    margin: 10px;
}


#prev, #next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#prev:hover, #next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

#prev {
    left: 0;
}

#next {
    right: 0;
}


#FullImageView {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 9);
    text-align: center;
}

#FullImage {
    padding: 24px;
    max-height: 90%;
    max-width: 90%;
}

#CloseButton {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

img:hover {
    cursor: zoom-in;
}
