body {
    background-color: #1E3A8A;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-image: url('https://cdn.visualwilderness.com/wp-content/uploads/2019/12/Norway-Landscape-Photography-3-550x309.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 20px;
    border-bottom: 2px solid white;
}

h3 {
        font-style: italic;
}
h1, h3, h4, p, li {
    text-shadow: 2px 2px 4px black;
}

section {
    max-width: 800px;
    margin: 20px ;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.gallery-container {
    max-width: 800px;
    height: auto;
    margin: 0 auto;
    box-sizing: border-box;
}
ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 15px;
}

a {
    color: #FFD700;
    text-decoration: none;
}

#gallery-header {
    text-align: center;
    font-size: 3em;
    margin-bottom: 1em;
    border-radius: 2px;
}

.gallery-image {
    max-width: 100%;  
    height: auto;     
    display: block;  
    margin: 0 auto;  
  }
  
.nav-button {
    margin: 0.25em;
    position: absolute;
    top: 50%;                 /* Position vertically at the center */
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}

.nav-button.right {
    right: 0;
}

.nav-button.left {
    left: 0;
}

nav.button:hover {
    transform: translateY(-50%) scale(3);
}
a:hover {
    text-decoration: underline;
}

.descript {
    margin-left: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.double-indent {
    margin-left: 40px;
}

.bigger {
    font-size: 16px;
}

.content-block {
    width: 65%; 
    float: left;
}

.container { 
	width: 100%;
	overflow: hidden;
}

#pongCanvas {
    background: black; 
    display: block;
    margin: auto; 
}
.photog-button {
    text-align: center;
    margin-top: 2em;
}
.link-button {
    display: inline-flex;
    background-color: #eddbc2;
    font-size: 1.5em; 
    color: #186907; 
    text-align: center; 
    margin-top: 1em;
    padding: 0.5em 1em;
    cursor: pointer; 
    border: 2px solid #090a09;
}

@media print {
	
    body {
        background-color: white;
        color: black;
    }

    header {
        display: none;
    }

    .pong-game, .pleadingforpong, .hidden, #pongCanvas {
        display: none;
    }

    section {
        margin: 0;
        padding: 0;
        border: none;
    }

    h1, h3, h4, p, li {
	text-shadow: none;
    }
}

