body {
    display: grid;
    gap: 60px;
    justify-content: center;
    width: 100vw;
}

h2, h4 {
    color: #00599B;
    font-weight: bolder;
}

.contact-section1 {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.picture-background {
    position: relative;
    width: 80vw;
    height: 300px;
    background: url('https://ik.imagekit.io/s3jkgwyie/8fe8ff81a624bdf066635b18cff0d8e8.png?updatedAt=1703351095849');
    background-position-y: -30px;
    background-repeat: no-repeat;
    background-size: cover;
    justify-self: center;
}

.blue-background {
    position: absolute;
    background-color:#00589b8e;
    width: 100%;
    height: 100%;
}

.main-content {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    color: white;
}

.main-content h1{
    text-align:center;
    font-weight: bolder;
}

.contact-section1-writeup {
    background-color: white;
    border-radius: 22px;
    padding: 32px;
}

.contact-section1-writeup ul {
    list-style: none;
}

.contact-section1-writeup a {
    text-decoration: none;
    color: black;
}

.contact {
    display: grid;
    margin-top: 30px;
    margin-bottom: 20px;
}

.contact a {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    align-items: center;
    align-content: center;
}

.contact a i{
    color:#00599B;
    font-weight: bold;
}

.opening-times {
    display: grid;
    margin-bottom: 20px;
}

.social-media {
    display: grid;
    gap: 0;
}

.social-media h6 {
    color:#00599B;
    font-weight: bolder;
}

.social-media svg {
    fill:#00599B;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.formgroup {
    display: flex;
    flex-direction: column;
}



.formgroup input, .formgroup textarea, .formgroup select {
    border-radius: 15px;
    height: 40px;
    border: none;
    outline-width: 1px;
    outline-style: solid;
    outline-color: #74bbef;
    background-color: white;
    padding: 10px 5px;
}

form button {
    outline: none;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
}


@media(max-width: 768px){
    h2, h4 {
        text-align: center;

    }

    h2 {
        font-size: 1.5rem;
    }

    body {
        gap: 40px;
    }

    .picture-background {
        background-position-y: 0;
        background-position-x: center;
        width: 100%;
    }

    .contact-section1 {
        flex-wrap: wrap;
        width: 100%;
        justify-self: center;
    }

    .contact-section1-writeup {
        width:90vw;
        display: grid;
        justify-content: center;
    }

    #contactForm {
        margin-top: 0;
        width: 80vw;
    }

    

}