@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&display=swap');
h1{
	font-family: "UnifrakturMaguntia", cursive;
	font-weight: 400;
  font-style: normal;
}
*{
	box-sizing: border-box;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
body {
    margin: 0;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures footer stays at the bottom of the viewport */
}

header {
    background-color: #88AED5;
    color: white;
    padding: 1rem;
    text-align: center;

}
	
	footer {
    background-color: #88AED5;
    color: white;
    padding: 1rem;
    text-align: center;
}

	nav {
			border-radius: 10px;
	}
	
	.link {
		color: #276FAB;
	}	


.content-wrapper {
    display: flex; /* Activate Flexbox for the columns */
    flex: 1; /* Allows the content area to grow and push the footer down */
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
    padding: 1rem;
    gap: 1rem; /* Adds space between columns */
    border-radius: 35px;
}

.main-content {
    flex: 2; /* Main content takes up more space than sidebars */
    background-color: #f4f4f4;
    padding: 1rem;
	border-radius: 15px;
}

.sidebar-left, .sidebar-right {
    flex: 1; /* Sidebars take up equal space */
    background-color: #eee;
    padding: 1rem;
	border-radius: 15px;
}
	.meee img {
    border-radius: 68px;
		}
	nav {
		background-color: aliceblue;
	}

/* Media query for smaller screens (e.g., mobile phones) */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column; /* Stacks columns vertically on small screens */
    }
    .sidebar-left, .sidebar-right, .main-content {
        flex: 1 0 100%; /* Makes each column take full width */
    }
}
	
	.header-img {
		max-width: 100%;
		max-height: 100%;
		overflow: auto;
	}
	
	.header2 {
		font-family: "UnifrakturMaguntia", cursive;
	font-weight: 400;
  font-style: normal;
	}

	body {
    background-color: #5FA9D7;
    background-image: -webkit-linear-gradient(270deg,rgba(163,198,235,1.00) 0%,rgba(136,174,213,1.00) 50.98%,rgba(140,183,228,1.00) 100%), url(url);
    background-image: -moz-linear-gradient(270deg,rgba(163,198,235,1.00) 0%,rgba(136,174,213,1.00) 50.98%,rgba(140,183,228,1.00) 100%), url(url);
    background-image: -o-linear-gradient(270deg,rgba(163,198,235,1.00) 0%,rgba(136,174,213,1.00) 50.98%,rgba(140,183,228,1.00) 100%), url(url);
    background-image: linear-gradient(180deg,rgba(163,198,235,1.00) 0%,rgba(136,174,213,1.00) 50.98%,rgba(140,183,228,1.00) 100%), url(url);
	}