* {
    box-sizing: border-box;
}

body {
    font-family: "Futura", sans-serif;
    background-color: #202020; /* Background color */
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0; /* Remove any default margin */
    padding: 0; /* Remove any default padding */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    
    /* Fixed background setup */
    background-image: url('images/wavey_background.jpg'); /* Ensure the path is correct */
    background-size: cover; /* Cover the entire page */
    background-position: center center; /* Center the image */
    background-attachment: fixed; /* Make the background fixed */
    background-repeat: no-repeat; /* Prevent tiling of the image */
}



header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 0;
    color: white;
}
header img.logo {
    max-height: 4rem;
}
header .site-name {
    margin: 0;
    font-size: 2rem;
    padding-left: 1vw;
    font-family: "Futura", sans-serif;
}
.outlined-text {
    text-shadow:
        -1px -1px 0 rgb(102, 102, 102),
         1px -1px 0 rgb(102, 102, 102),
        -1px  1px 0 rgb(102, 102, 102),
         1px  1px 0 rgb(102, 102, 102);
}



nav {
    font-family: "Futura", sans-serif;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fdbaba8e;
    padding: 1rem;
    border-radius: 15px;
    outline: 2px solid rgb(207, 207, 207);
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
nav li {
    margin: 0 15px;
}
nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px;
    transition: background-color 0.15s;
}
nav a:hover {
    background-color: #555;
    border-radius: 5px;
}

.text_blocks {
    font-family: "Futura", sans-serif;
    border-radius: 15px;                 /* Visual */
    width: 95%;                          /* Affects layout width */
    max-width: 1200px;                   /* Affects layout limit */
    margin: 0 auto;                      /* Horizontal centering (top/bottom margin = 0) */
    background-color: #fdbaba8e;         /* Visual style only */
    padding-left: 1rem;                       /* Internal spacing around content */
    padding-right: 1rem;                       /* Internal spacing around content */
    outline: 2px solid rgb(207, 207, 207); /* Visual */
    color: rgb(255, 255, 255)
}

.section {
    margin-top: 1rem;
}