:root{
    font-family: 'Courier New', Courier, monospace;
}

body{
    background-image: linear-gradient(rgb(43, 83, 107), rgb(0, 1, 25));
    margin: 0;
}

.header {
    margin: auto;
    padding: 0px;
    padding-bottom: 0;
    width: min(100%, 1200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(../images/water.jpg);
    background-size: 50%;
    background-repeat: round;
    background-position: center;
    border-image: 
        linear-gradient(
            rgba(87, 218, 216, 0.279),
            rgba(0, 7, 52, 0.566)
            )
        fill 1 ;
}

.header h1{
    color: white;
    text-shadow: 10px 5px 5px black;
    padding: 10px;
    padding-bottom: 0;
    margin: 10px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 5rem;
}

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

.header__nav {
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(2, 25, 48, 0.642);
    box-shadow: 10px 5px 10px black;
}

.header__menu {
    flex-grow: 1;
    padding: 20px;
    margin: 0;
    display: flex;
    gap: 20px;
    min-width: min(100%, auto);
    justify-content: space-evenly;

}

.header__menu li {
    padding: 10px;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: rgb(237, 157, 37);
    border-radius: 10px;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.363);
}

.header marquee {
    color: white;
    background-color: rgb(30, 52, 74);
    padding: 5px;
    strong{
        color: rgb(247, 68, 68);
        text-decoration-line: line-through;
        text-shadow: 0 0 5px red;
    }
}


main{
    margin: auto;
    box-sizing: border-box;
    width: min(100%, 1200px);
    padding: 50px;
    min-height: 1000px;
    background-color: rgb(236, 237, 226);
    box-shadow: 0px 0px 15px rgba(2, 4, 21, 0.566);
}

.content-block{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 10px;
    flex-direction: column;
}

.content-block img{
    max-width: 500px;
    border: none;
}

.tragedy :hover {
    display: absolute;
    filter: sepia(100%) saturate(0%) brightness(40%) hue-rotate(180deg);
    transform: scale(9);
    transition: 10s ease;
}