/* CSS styles go here */
html {
    height:100%;
    margin:0;
}
body {
    height:100%;
    margin:0;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /*background-color: #f4f4f4;*/
}

header {
    background-color: #333;
    color: #fff;
    padding: 1em;
    text-align: center;
}

nav {
    background-color: #444;
    padding: 0.5em;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.5em 1em;
}

main {
    flex:10;
    background-image: url('../img/backgr.jpg'); /* Ensure the path is correct */
    background-size:100% 100%; /* This makes the image cover the entire background */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center; /* Centers the image */
    padding: 1em;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em;
    position:relative;
    bottom: 0;
    width: 100%;
}
p {
}

h1 {
    font-size:130%;
}

h2 {
}

.sidebar {
    width: 250px; /* Width of the sidebar */
    background-color: #333; /* Background color */
    color: white; /* Text color */
    padding: 20px; /* Padding inside the sidebar */
}

.sidebar h3 {
    margin-top: 0; /* Remove top margin */
}

.sidebar ul {
    list-style: none; /* Remove bullet points */
    padding: 0;
}

.sidebar li {
    margin-bottom: 5px; /* Space between list items */
}

.sidebar a {
    color: white; /* Link color */
    text-decoration: none; /* Remove underlines */
    padding: 5px 30px;
    display: block; /* Make the links take up the full width */
}

.sidebar a:hover {
    background-color: #555; /* Darker background on hover */
}

.content {
    flex-grow: 1; /* Take up remaining space */
    padding: 20px; /* Padding for content */
    background-color: #f4f4f4; /* Background color for content */
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
    width: 50%;
}

.outlined-text {
    color: white !important;
    text-shadow:
        -1px -1px 0 black,
        1px -1px 0 black,
        -1px  1px 0 black,
        1px  1px 0 black;
}