* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center; 
    align-items: center; 
    flex-direction: column; 
    background-image: url('background-img.jpg'); 
    background-size: cover; /
    background-position: center center; 
    background-repeat: no-repeat; 
    background-attachment: fixed; 
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; 
    width: 100%;
}

.content {
    text-align: center;
    color: white;
    background-color: rgba(255, 255, 255, 0.75);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 350px;
    height: auto;
    margin-bottom: 15px;
}

h1 {
    color: #006633;
}

.text {
    font-size: 22px;
    margin: 10px 0;
    color: #006633;
}

.text a {
    color: #006633;
    font-size: bold;
}

.text:nth-child(2) {
    font-size: 26px;
    color: #006633; 
    font-weight: bold;
}

footer {
    width: 100%; 
    background-color: #006633; 
    text-align: center;
    padding: 15px 0; 
    position: absolute;
    bottom: 0; }

footer p {
    color: white; 
    font-size: 16px;
}
