* { 
    margin: 0; padding: 0; box-sizing: border-box; 
}

body {
    padding: 20px;
    max-width: 200ch;
    margin: auto;
    background-image: linear-gradient(#5e0303,#8b0000,#5e0303);
}

header {
   margin: 20px auto; 
}

h1 {
    text-align: center;
    font-family: "Permanent Marker", cursive, sans-serif;
    background-color: #ffebcd;
    border-radius: 8px;
    padding: 20px;
    font-size: 40pt;
    border: 8px solid #000000;
}

.nav {
    margin: 20px auto;
}

nav {
    text-align: center;
    font-size: 14pt;
    font-family: cursive, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #000000;
    border: 6px solid #ffebcd;
    border-radius: 8px;
    padding: 10px;
}

#sec1 {
    margin: 10px auto 20px auto;
}

#sec1 p{
    padding: 10px;
    border: 6px solid #ffebcd;
    border-radius: 8px;
    line-height: 1.3;
    text-align: center;
    font-family: cursive, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 14pt;
    color: #ffebcd;
}

.images {
    margin: 20px auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}

.images div:nth-child(1) {
    flex: 0 0 20%;
    aspect-ratio: 1;
    border-radius: 5%;
    position: relative;
    overflow: hidden;
    min-width: 500px;
    max-width: 500px;
    min-height: 500px;
    transition: box-shadow .5s linear;
    margin: 5px;
}

.images div:nth-child(1) figure {
    background-image: url(/cis195/images/newhockey1.jpg);
    background-size: 100%;
    width: 145%;
    aspect-ratio: 1;
    position: absolute;
    top: -2%; left: -30%;
}

.images div:nth-child(2) {
    flex: 0 0 20%;
    aspect-ratio: 1;
    border-radius: 5%;
    position: relative;
    overflow: hidden;
    min-width: 500px;
    max-width: 500px;
    min-height: 500px;
    transition: box-shadow .5s linear;
    margin: 5px;
}

.images div:nth-child(2) figure {
    background-image: url(/cis195/images/newhockey2.jpg);
    background-size: 80%;
    width: 145%;
    aspect-ratio: 1;
    position: absolute;
    top: -40%; left: 0%;
}

.images div:nth-child(3) {
    flex: 0 0 20%;
    aspect-ratio: 1;
    border-radius: 5%;
    position: relative;
    overflow: hidden;
    min-width: 500px;
    max-width: 500px;
    min-height: 500px;
    transition: box-shadow .5s linear;
    margin: 5px;
}

.images div:nth-child(3) figure {
    background-image: url(/cis195/images/newhockey3.jpg);
    background-size: 110%;
    width: 145%;
    aspect-ratio: 1;
    position: absolute;
    top: 0%; left: -23%;
}

.images div:hover {
    box-shadow: 0 0 200px #ffebcd;
}

/* .images div figure:hover {
    filter: blur(2px);
} */

main {
    font-family: cursive, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 14pt;
    color: #ffebcd;
    display: flex;
    gap: 10px;
    line-height: 1.3;
    margin: 10px auto;
}

main div {
    flex: 50%;
    border: 6px solid #ffebcd;
    border-radius: 8px;
}

main div h2 {
    text-align: center;
    font-family: "Permanent Marker", cursive, sans-serif;
    color: #ffebcd;
    background-color: #000000;
    padding: 15px;
    margin-bottom: 10px;
    font-size: 24pt;
    border-bottom: 6px solid #ffebcd;
}

main div p {
    text-align: center;
    margin-bottom: 10px;
    padding: 0px 5px;
}

main div ul {
    line-height: 1.5;
    margin-left: 25px;
    margin-bottom: 10px;
    padding: 0px 5px;
}

nav a {
    padding: 2px;
}

a {
    color: #ffebcd;
}

.history a:hover {
    color: #000000;
}

a:hover {
    color: #8b0000;
}

img {
    display: block;
    margin: 20px auto;
    text-align: center;
    border-radius: 10px;
    box-shadow: 10px 10px 20px #000000;
    max-width: 1200px;
    height: auto;
}

.table_arenas {
    width: 100%;
    margin: 20px auto;
    border-collapse: collapse;
}

td, th {
    border: 6px solid #ffebcd;
    text-align: center;
}

th {
    background-color: #000000;
    padding: 8px;
}

td img {
    aspect-ratio: 1;
    max-width: 20vw;
    max-height: 20vh;
}

tr:hover {
    background-color: #000000;
}

footer {
    line-height: 1.25;
    font-size: 12pt;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #ffebcd;
    background-color: #000000;
    border: 4px solid #ffebcd;
    padding: 10px;
    margin: 100px auto 0px auto;
}

/* Tablet portrait layout */
@media screen and (max-width: 1050px) {

    main {
        font-family: cursive, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-size: 14pt;
        color: #ffebcd;
        display: flex;
        flex-flow: column;
        gap: 10px;
        line-height: 1.3;
        margin: 10px auto;
    }

    .images div:nth-child(1) {
        flex: 0 0 20%;
        aspect-ratio: 1;
        border-radius: 5%;
        position: relative;
        overflow: hidden;
        min-width: 300px;
        max-width: 500px;
        min-height: 300px;
        transition: box-shadow .5s linear;
        margin: 5px;
    }

    .images div:nth-child(1) figure {
        background-image: url(/cis195/images/newhockey1.jpg);
        background-size: 100%;
        width: 145%;
        aspect-ratio: 1;
        position: absolute;
        top: -2%; left: -30%;
    }

    .images div:nth-child(2) {
        flex: 0 0 20%;
        aspect-ratio: 1;
        border-radius: 5%;
        position: relative;
        overflow: hidden;
        min-width: 300px;
        max-width: 500px;
        min-height: 300px;
        transition: box-shadow .5s linear;
        margin: 5px;
    }

    .images div:nth-child(2) figure {
        background-image: url(/cis195/images/newhockey2.jpg);
        background-size: 80%;
        width: 145%;
        aspect-ratio: 1;
        position: absolute;
        top: -40%; left: 0%;
    }

    .images div:nth-child(3) {
        flex: 0 0 20%;
        aspect-ratio: 1;
        border-radius: 5%;
        position: relative;
        overflow: hidden;
        min-width: 300px;
        max-width: 500px;
        min-height: 300px;
        transition: box-shadow .5s linear;
        margin: 5px;
    }

    .images div:nth-child(3) figure {
        background-image: url(/cis195/images/newhockey3.jpg);
        background-size: 110%;
        width: 145%;
        aspect-ratio: 1;
        position: absolute;
        top: 0%; left: -23%;
    }

    td, th {
        border: 4px solid #ffebcd;
    }

    td img {
        box-shadow: none;
        padding: 3px;
    }

}

/* Phone layout */
@media screen and (max-width: 760px) {

    h1 {
        text-align: center;
        font-family: "Permanent Marker", cursive, sans-serif;
        background-color: #ffebcd;
        border-radius: 8px;
        padding: 20px;
        font-size: 25pt;
        border: 8px solid #000000;
    }

    main {
        font-family: cursive, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-size: 14pt;
        color: #ffebcd;
        display: flex;
        flex-flow: column;
        gap: 10px;
        line-height: 1.3;
        margin: 10px auto;
    }

    .images {
        margin: 20px auto;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-evenly;
    }

    .images div:nth-child(1) {
        flex: 0 0 20%;
        aspect-ratio: 1;
        border-radius: 5%;
        position: relative;
        overflow: hidden;
        min-width: 300px;
        max-width: 500px;
        min-height: 300px;
        transition: box-shadow .5s linear;
        margin: 5px;
    }

    .images div:nth-child(1) figure {
        background-image: url(/cis195/images/newhockey1.jpg);
        background-size: 100%;
        width: 145%;
        aspect-ratio: 1;
        position: absolute;
        top: -2%; left: -30%;
    }

    .images div:nth-child(2) {
        flex: 0 0 20%;
        aspect-ratio: 1;
        border-radius: 5%;
        position: relative;
        overflow: hidden;
        min-width: 300px;
        max-width: 500px;
        min-height: 300px;
        transition: box-shadow .5s linear;
        margin: 5px;
    }

    .images div:nth-child(2) figure {
        background-image: url(/cis195/images/newhockey2.jpg);
        background-size: 80%;
        width: 145%;
        aspect-ratio: 1;
        position: absolute;
        top: -40%; left: 0%;
    }

    .images div:nth-child(3) {
        flex: 0 0 20%;
        aspect-ratio: 1;
        border-radius: 5%;
        position: relative;
        overflow: hidden;
        min-width: 300px;
        max-width: 500px;
        min-height: 300px;
        transition: box-shadow .5s linear;
        margin: 5px;
    }

    .images div:nth-child(3) figure {
        background-image: url(/cis195/images/newhockey3.jpg);
        background-size: 110%;
        width: 145%;
        aspect-ratio: 1;
        position: absolute;
        top: 0%; left: -23%;
    }

    nav {
        text-align: center;
        font-size: 12pt;
        font-family: cursive, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        background-color: #000000;
        border: 6px solid #ffebcd;
        border-radius: 8px;
        padding: 5px;
    }

    #sec1 p{
        padding: 10px;
        border: 6px solid #ffebcd;
        border-radius: 8px;
        line-height: 1.4;
        text-align: center;
        font-family: cursive, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-size: 12pt;
        color: #ffebcd;
    }

    main {
        font-family: cursive, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-size: 12pt;
        color: #ffebcd;
        display: flex;
        gap: 10px;
        line-height: 1.4;
        margin: 10px auto;
    }

    main div h2 {
        text-align: center;
        font-family: "Permanent Marker", cursive, sans-serif;
        color: #ffebcd;
        background-color: #000000;
        padding: 15px;
        margin-bottom: 10px;
        font-size: 20pt;
        border-bottom: 6px solid #ffebcd;
    }

    main div p {
        text-align: center;
        margin-bottom: 10px;
        padding: 0px 5px;
    }

    main div ul {
        line-height: 1.5;
        margin-left: 25px;
        margin-bottom: 10px;
        padding: 0px 5px;
        font-size: 12pt;
    }

    td, th {
        font-size: 10pt;
        border: 2px solid #ffebcd;
    }

    td img {
        box-shadow: none;
        padding: 3px;
    }

    footer {
        line-height: 1.25;
        font-size: 10pt;
        text-align: center;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        color: #ffebcd;
        background-color: #000000;
        border: 4px solid #ffebcd;
        padding: 10px;
        margin: 100px auto 0px auto;
    }
        
}
