body {
    font-family: 'Raleway', sans-serif;
    background-image: url('gdansk.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    color: #1f1f1f;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    padding: 40px;
    background-color: rgba(207, 207, 207, 0.841);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

h1 {
    font-size: 48px;
}

p {
    font-size: 24px;
    margin: 10px 0;
    color: #000000;
}

.contact-links {
    margin-top: 20px;
    margin-bottom: 10px;
}

.contact-links a {
    display: inline-block;
    margin: 30px;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.contact-links a:hover {
    background-color: #7c7c7c;
}

.contact-links a i.fab {
    font-size: 40px;
    color: #333;
}
