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;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    max-height: 800px;
}

.logo-container img {
    max-width: 100%;
    height: auto;
}

h1 {
    font-size: 2em;
}

p {
    font-size: 1.2em;
}

.project-container {
    background-color: rgba(169, 169, 169, 0.8);
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    transition: background-color 0.3s ease;
}

.project-container:hover {
    background-color: rgba(169, 169, 169, 1);
    border: 2px solid white;
}

.project-container img {
    max-width: 22%;
    height: auto;
}

.project-container h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

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;
    }
}