body {
    background-image: url('../img/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Xperia', sans-serif;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin: 0;
}

.contact-container {
    background-color: rgba(169, 169, 169, 0.8);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    opacity: 0.8;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    max-height: 800px;
}

.logo-container img {
    max-width: 100%;
    height: auto;
}

form {
    text-align: left;
    margin-top: 20px;
}

form label,
form input,
form textarea {
    display: block;
    margin-bottom: 10px;
}

form input,
form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ffffff;
    border-radius: 5px;
}

form input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #45a049;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: transparent;
    color: white;
    text-align: center;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a {
        margin: 10px 0;
    }
}
