body {
    background-color: black;
    color:aliceblue
}

.top {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.top img {
    width: 100%;
    max-width: 820px;
    height: auto;
    display: block;
}

.container {
    max-width: 1000px;
    margin: 100px auto;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 250px minmax(0, 1fr);

}

header, nav, main, footer {
    border: aliceblue 2px solid;
}

header {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
}

nav {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    height: max-content;
}

main {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    height: max-content;
}

footer {
    grid-row: 3 /4;
    grid-column: 1 /3;
}

#fubo {
    position: absolute;
    width: 260px;
    transform: rotate(-13deg);

    left: 1390px;
    bottom: 320px;

}

#cirno {
    position: absolute;
    width: 180px;
    transform: rotate(13deg);
    left: 250px;
    bottom: 50px;
}

#marisa {
    width: 255px;
    position: absolute;
    left: 1410px;
    transform: rotate(-13deg);
    bottom: -100px
}