body {
    min-height: 100vh;
    background-image: url('../img/tempbackground.png');
    background-size: cover;       
    background-position: top;  
    background-repeat: no-repeat; 
    color: #1E3231;
    font-family: monospace;
    font-size: 20px;
    cursor: default;
}

/* currently this overlay means that the site is not mobile friendly - needs fix with @media rules */
#overlay {
  position: fixed; /* Sit on top of the page content */
  display: flex;
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  box-sizing: border-box;
  border: 200px solid transparent;
  border-image: url('../img/tempborderfull.png') 33% round; /* this border took me like a decade to make omg */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  pointer-events: none;
}

h1 {
    font-size: 30px;
    font-weight:bold;
}

h2 {
    font-size: 25px;
    font-weight:bold;
}

a {
    cursor: pointer;
    font-style: italic;
}

a:hover {
    font-weight: bold;
}

header {
    background: linear-gradient(rgba(151,205,202,0.8),rgba(52,85,89,0.8));
    border-bottom: 2.5px dashed rgba(223,226,167,1);
    padding: 20px;
    display: flex;
    flex-direction: column; /* this changes the order of elements inside the header */
    flex-wrap: wrap; /* this changes how elements wrap to fit into the screen */
    justify-content: space-between;
    align-items: center;
    
}

nav ul li {
    display: inline;
}

nav ul li a {
    padding: 0 10px 0 0;
}

main {

    margin-top: 10px;
    padding: 0 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;

}


section {
    background: linear-gradient(rgba(151,205,202,0.8),rgba(52,85,89,0.8));
    border: 2.5px dashed rgba(223,226,167,1);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}