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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url('http://summitsolutionsltd.co.uk/background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Adjust the last value (0.3) to control the opacity of the black cover */
    z-index: -1;
}

.logo {
    width: 300px;
    margin-bottom: 30px;
}

.contact-info {
    text-align: center;
    color: #fff;
    padding: 1rem;
    border-radius: 5px;
}

.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
    .logo {
        width: 250px;
    }

    .contact-info h3 {
        font-size: 1rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }
}

.button a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #bf4b45;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.button a:hover {
    background-color: #8f312c;
}

.button i {
    font-size: 15px;
    color: #fff; /* Set the color of the icons to white */
    position: relative;
    padding-right: 5px;
}
