body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: lightgrey;
    margin: 0;
	width: 100%;
}

	
nav {
width: 100%;
background-color: #333;
display: flex;
justify-content: center;
padding: 10px 0; 
}

nav a {
color: white; 
text-decoration: none;
font-size: 18px;
padding: 10px 15px;
margin: 0 15px; 
display: inline-block;
transition: background-color 0.3s; 
}


nav a:hover {
background-color: #575757; 
}


navbar-container {
width: 100%;
max-width: 1200px; 
margin: 0 auto;

}


main { 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    width: 80vw;
    max-width: 1200px;
}

section { 
    background: grey;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    text-align: center;
    position: relative; 
    padding-top: 20px; 
}

section:hover {
	 transform: scale(1.08);
}

#think-later {
	margin-top: 50px; 
}
	

#portrait {
    position: absolute; 
    top: 6px; 
    right: 8px; 
    width: 150px; 
    height: 200px; 
	border-radius: 15px;
}



table {
    width: 100%;
    border-collapse: collapse; 
}

th, td {
    padding: 10px;
    text-align: left;
    border: 1px solid black; 
}

tr:hover {
    background-color: #e9e9e9; 
}
header {
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: darkorange;
    color: black; 
	
}

@font-face {
    font-family: "Bauhaus 93";
    src: url('path/to/Bauhaus93.woff') format('woff');
}

h1 {
    font-family: "Bauhaus 93", sans-serif;
	font-size: 3rem; 
    letter-spacing: 4px;
}
 
footer {
    background-color: darkorange; 
    color: black; 
    text-align: center; 
    padding: 20px; 
    position: relative; 
    bottom: 0; 
    width: 100%;
}
		
		