body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.header-image {
    background-image: url('./LP_Header.jpg');
    background-size: cover;
    background-position: initial;
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

@media (max-width: 720px) {
    .header-image {
        background-image: url('./Mobile.jpg');
    }
}

.header-image h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    background-color: #f4f4f4;
}

.contact-block {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin: 10px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-flow: column;
    align-items: center;
}

.contact-block img {
    width: 80%;
}

.contact-block a {
    text-decoration: none;
    margin-top: 1em;
    color: #00568a;
}

.contact-block h2 {
    margin-top: 0;
    color: #333;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
}
