:root {
            --text: black;
            --border: black;
            --bg: black;
        }

body {
            background-image:url('https://shelbyjacksonart.neocities.org/reed/blue137.jpg');
            background-size: 50px;
            background-repeat: repeat;
            font-family: "Jersey 20", serif;
            color: var(--text);
            display: flex;
            flex-direction: column;
            align-items: center; 
            justify-content: center;
            min-height: 100vh;
            padding: 10px;
            margin: 0;
            width: 100%;
            max-width: 100vw; 
            overflow-x: hidden;
            font-size: 18px;
        }
header {
    position: relative;
   background-image:url('https://shelbyjacksonart.neocities.org/reed/blue137.jpg');
    background-position: center;
    background-repeat: repeat;
    border: 10px groove;
    border-color:#006db4;
    height: 100px; 
    width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    top:20%;
    }
.container1 {
    display: grid;
    max-width:1200px;
    justify-content: center;
    margin-top: 25px; 
    grid-template-columns: repeat(2,1fr);
    width: max-content;
}
.box1 {
    color:white;
    position:relative;
    background-image:url('https://shelbyjacksonart.neocities.org/reed/blue137.jpg');
    background-position: center;
    background-repeat: repeat;
    border: 10px groove;
    border-color:#006db4;
    justify-content: center;
    width: 390px;
    height: 500px;
    display: block;
    grid-column: 1;
    grid-row: 1;
    gap:5px;
    margin:10px;
}
.box2 {
    color:white;
    position:relative;
   background-image:url('https://shelbyjacksonart.neocities.org/reed/blue137.jpg');
    background-position: center;
    background-repeat: repeat;
    border: 10px groove;
    border-color:#006db4;
    justify-content: center;
    width: 800px;
    height: 500px;
    display: block;
    grid-column: 2;
    grid-row: 1;
    gap:5px;
    margin:10px;
}