body {
    background-image: url('/assets/imgs/wallpapers/spyro.jpg');
}

#container {
    display: grid; /* put all child items of this container in a grid */
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr; /* each fr (fractional unit) is a fraction of the entire grid. the first fr is for the first grid item */
    grid-template-rows: 1fr 1fr; /* split both rows equally */
    gap: 50px; /* 20px between each column + row */
    justify-items: center; /* align items horizontally in a grid */
}

.content {
    width: 100%; /* in this case 80% width would actually set the div to be 80% the size of its fraction of the grid element */
    min-height: 40vh;

    background-color: rgba(187, 187, 187, 0.7);
    border-radius: 20px;

    border-color: rgb(187, 187, 187);
    border-style: solid;
    border-width: 2px;

    position: relative;
}

.anchorList, #content1 p, #content2 p, #content2 h1, #content5 p {
    text-align: left;
    padding: 20px 0px 0px 20px;
}

.content a {
    display: block; /* anchor tags r inline by default im dumb */
    font-size: 1em;
    font-family: ssa;
    margin: 0px;
    padding:0px;
    border: 0px;
    padding-top: 5px;
    text-decoration: none;
    z-index: 1000;
}

.content a:hover {
    text-decoration: underline;
}

#content1 {
    background-image: url('/assets/imgs/enemies/arkeyan.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    grid-column: 1 / 3;
}

#content2 {
    background-image: url('/assets/imgs/skylanders/ghostRoaster/withChompy.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    grid-column: 3 / 6;
}

#content2 .contentHeader {
    background-color: white;
    background-image: url('/assets/imgs/animated/magic.webp');
    background-position: center;
    background-size: 120%;
    background-repeat: no-repeat;

    border-color: rgb(187, 187, 187);
    border-style: solid;
    border-width: 0px;
    border-bottom-width: 2px;
}

#content2 .contentHeader h2 {
    opacity: 0;
}

#content2 h1 {
    max-width: 70%;
    font-size: 3.5em;
    margin-top: 0px;
    margin-bottom: 0px;
    font-family: ssaBold;
    text-shadow: 2px 2px 2px rgb(153, 153, 153);
}

#content1 p, #content2 p {
    font-size: 1.1em;
    margin: 0px;
}

#content3 {
    grid-column: 1 / 2;

    background-image: url('/assets/imgs/animated/magicTall.webp');
    background-position: center;
    background-size: 101%;
    background-repeat: no-repeat;
}

#content3 img {
    width: 80%;
}

#content4 {
    grid-column: 2 / 4;
}

#content4 img {
    width: 90%;
    border-radius: 5px;
}

#content5 {
    grid-column: 4 / 6;

    background-image: url('/assets/imgs/enemies/chompyMage.png');
    background-position: bottom center;
    background-size: 101%;
    background-repeat: no-repeat;
}

#content5 p {
    font-size: 1em;
    max-width: 60%;
}