


.intro {
    width: 100%;
    height: 45vh;
    color: white;
    text-shadow: 5px 5px 15px black;
    background-image: url('../img/background-contact.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center ;
    font-size: 50px;
    text-align: center;
}

.top-page {
    display: flex;
    justify-content: space-evenly;
    margin-top: -50px;
    width: 100%;
    /* background-color: green; */
}

.top-page .box {
    padding-top: 15px;
    padding-bottom: 15px;
    width: 400px;
    height: auto;
    background-color: rgb(45, 45, 45);
    margin: 10px;
    /* border: 1px solid; */
    box-shadow: 5px 5px 20px black;
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 16px;
}

.box div {
    padding-left: 15px;
    padding-right: 15px;
}

.box img {
    margin-top: 10px;
    width: 50px;
    border-radius: 50%;
    padding: 5px;
    /* box-shadow: 0px 0px 10px white; */
}

.map {
    width: calc(100%);
    display: flex;
    justify-content: center;
}

.map iframe {
    width: calc(100%); 
    height: 45vh; 
    border:0;
}

.last-word p {
    padding-top: 30px;
    text-align: center;
    color: white;
    font-size: 30px;
}

.contact-form {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.contact-form form {
    width: calc(600px);
    padding: 50px;
    border: 2px solid ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.contact-form form h2 {
    margin-bottom: 40px;
}

.flex {
    display: flex;
    /* background-color: aqua; */
    width: 100%;
}

.flex input{
    padding: 12px;
    width: 50%;
    margin: 0px 10px 10px 10px;
}

.message-box {
    /* background-color: pink; */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-box textarea{
    margin: 10px;
    padding: 12px;
    width: 100%;
    height: 200px;
    font-family: Arial, Helvetica, sans-serif;
}

.message-box button {
    width: 100%;
    margin: 10px;
    padding: 10px;
}


@media (max-width: 768px) {
    .intro {
        font-size: 24px;
    }
    .top-page {
        display: grid;
        justify-content: center;
        margin-top: 50px;
    }
    .top-page .box {
        width: calc(100vw - 20vw);
        height: max-content;
    }
}