body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

h1 {
    color: white;
    font-size: 18px;
    font-family: sans-serif;
}

header {
    background-color: #373A40;
    color: white;
    padding: 20px;
}

.header-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    color: white
}

.header-container h1 {
    font-size: 3em;
    margin: 0;
}

.header-container .privacy-policy {
    font-size: 1.2em;
    margin-top: 10px;
}

.content-container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

.home-button {
    position: absolute;
    top: 20px;
    right: 20px;
    /* background-color: white; */
    color: #373A40;
    border: none;
    border-radius: 50%;
    padding: 15px;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.home-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    background-color: #445a9e;
    color: white;
}

.container h1 {
    font-size: 4.5em;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.container h2 {
    font-size: 1.5em;
    font-family: 'Arial', sans-serif;
}

#footerContainer {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    position: relative; 
    bottom: 0;
}