body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    overscroll-behavior: none;
}

.service-section {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    position: relative;
    
}

.service-section p {
    font-size: 20px;
    font-family: 'Montserrat';
    font-weight: bolder;
}

.service-section h2 {
    font-size: 40px;
    color: rgb(184, 231, 215);
}

.service-section div {
    width: 40%;
    height: auto;
    padding: 10px;
}

.service-section img {
    width: 30%;
    height: 30%;
    padding: 10px;
}

.image-view-container {
    background-color: gray;
    padding: 20px;
    width: 90%;
    max-width: 900px;
    position: relative;
    
    transform: translate(-50%);
    left: 50%;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-grow: 0s;
}

.image-view-container .caption-container {
    padding: 25px;
    color: white;
}

.contact-section {
    text-align: center;
    background-image: linear-gradient(to right,rgb(198, 255, 229), rgb(195, 208, 255));
    padding: 20px;
}

.contact-section h2 {
    color: white;
    font-size:50px;
}
.contact-section label {
    font-size: 20px;
    font-family: 'Montserrat';
    font-weight: bolder;
}

.contact-section #message-field {
    width: 600px;
    height: 25vh;
    text-align: left;
}

.big-button {
    background-image: linear-gradient(to right,rgb(198, 255, 229), rgb(195, 208, 255));
    color: white;
    text-align: center;

    width: 400px;
    padding: 25px;
    margin-top: 50px;
    margin-bottom: 50px;;
    
    position: relative;
    left: 50%;
    transform: translate(-50%);
}

.big-button a:hover {opacity: .5}



@media screen and (max-width: 800px) {
    .service-section div {
        width:100%;
    }

    .service-section {
        flex-wrap: wrap;
    }

    .service-section:nth-of-type(2) {
        flex-wrap: wrap-reverse;
    }

    .service-section img {
        width:100%;
    }

}

