body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9)),
        url('Aquarium Background.png');
    background-size: cover;
    background-position: center;
    animation: fade-in 3s;
}

@keyframes fade-in {
    from {
        opacity: 0.2;
    }

    to {
        opacity: 1;
    }
}

h1 {
    font-family: "Modak", system-ui;
    font-size: 100px;
    color: sandybrown;
    text-shadow: 2px 5px black;
    text-align: center;
    font-weight: normal;
}

h2 {
    font-family: "Modak", system-ui;
    font-weight: normal;
    color: white;
    text-shadow: 1px 1px 0 black,
        -1px 1px 0 black,
        1px -1px 0 black,
        -1px -1px 0 black;
    margin-left: 30px;
}


p {
    font-family: "Modak", system-ui;
    font-weight: normal;
    color: white;
    text-shadow: 1px 1px 0 black,
        -1px 1px 0 black,
        1px -1px 0 black,
        -1px -1px 0 black;
    padding: 20px;
}

.teamName:hover {
    color: green;
}

header {
    background-color: rgb(255, 221, 51);
    border: 6px solid rgba(204, 177, 41);
    border-radius: 20px;
    text-align: center;
    margin: 10px;
    padding: 10px;
}

header .box {
    display: flex;
    align-items: center;
}

.header-item {
    margin: 40px;
}

.icon {
    height: 100px;
    margin-right: 100px;
}

a {
    display: flex;
    justify-content: center;
    text-decoration: none;
    background-color: rgb(44, 44, 185);
    border: 3px solid rgb(110, 110, 201);
    border-radius: 8px;
    padding: 0 20px;
    color: white;
    font-family: "Modak", system-ui;
    text-shadow: 1px 1px 0 black,
        -1px 1px 0 black,
        1px -1px 0 black,
        -1px -1px 0 black;
}

.about,
.trailer,
.gallery,
.team,
.install {
    background-color: rgb(255, 221, 51);
    border: 6px solid rgba(204, 177, 41);
    border-radius: 20px;
    text-align: center;
    margin: 50px;
}

.about {
    max-width: 1200px;
}

.gallery {
    max-width: 2000px;
}

.team,
.install {
    width: 600px;
}

.shop {
    background-color: #8F332B;
    border: 5px solid #B24036;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box {
    background-color: #E53D2E;
    border: 5px solid #B83125;
    border-radius: 10px;
    margin: 30px;
    padding: 10px;
    max-width: max-content;
}

.gallery .shop .box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery img {
    width: 600px;
    height: 400px;
}

.member {
    display: flex;
    justify-content: space-around;
}

footer {
    background-color: rgb(255, 221, 51);
    border-top: 4px solid rgba(204, 177, 41);
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    text-align: center;
}

footer p {
    margin: 0;
}

@media screen and (max-width: 1000px) {

    header {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .shop,
    .box,
    .gallery,
    .member {
        flex-direction: column;
    }

    .gallery img {
        width: 200px;
        height: 100px;
    }

    .icon {
        height: 40px;
        width: 40px;
        margin-right: 0;
    }
}