* {
    background-image: none;
}

body {
    background-image: url('../img/pexels-leon-ardho-1552252.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container {

    margin: 1rem;

}

.form {
    width: 100%;


}

::placeholder {
    color: white;
    opacity: 0.7;
}


fieldset {
    /* max-height: 500px; */
    padding: 1rem;
    line-height: 5;
    text-align: center;
    border: 4px double rgb(255, 255, 255);
    background-color: rgba(0, 0, 0, 0.368);
    box-shadow: 0 0 13px black;
    border-radius: 10px;
    margin-bottom: 5rem;
}

fieldset legend {
    font-size: 3rem;
    font-weight: 900;
    color: white;
}

fieldset legend span {
    color: orangered;
}

.reg {
    color: white;
    text-transform: uppercase;
    width: 128px;
    height: 64px;
    padding: 0;
    margin-left: 10px;
    outline: none;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 68, 0, 0.615);
    font-size: 1rem;
    font-weight: 800;
    transition: all ease-in 250ms;

}

.reg:hover {
    cursor: pointer;
    color: orangered;
    scale: 0.95;
    background-color: rgba(174, 172, 172, 0.568);
}



.n-e {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.2rem;

}

#name {
    min-height: 50px;
    min-width: 50%;
    background-color: rgba(255, 68, 0, 0.286);
    color: rgb(255, 255, 255);
    padding: .5rem;
    font-size: 1.5rem;
    border: 2px solid white;
    border-radius: 5px;

}

#email {
    min-height: 50px;
    min-width: 45%;
    background-color: rgba(255, 68, 0, 0.286);
    color: rgb(255, 255, 255);
    padding: .5rem;
    font-size: 1.5rem;
    border: 2px solid white;
    border-radius: 5px;

}

#sub {
    min-height: 60px;
    min-width: 100%;
    background-color: rgba(255, 68, 0, 0.286);
    color: rgb(255, 255, 255);
    padding: .5rem;
    font-size: 1.5rem;
    border: 2px solid white;
    border-radius: 5px;
}

#message {
    min-width: 100%;
    min-height: 350px;
    background-color: rgba(255, 68, 0, 0.286);
    color: rgb(255, 255, 255);
    padding: .5rem;
    font-size: 1.5rem;
    border: 2px solid white;
    border-radius: 5px;
}

input:focus,
textarea:focus {
    scale: 1.01;
    box-shadow: 0 0 30px black;

}

.map {
    position: relative;
    padding-top: 56.25%;
    /* position: relative; */

    overflow-x: hidden;

    border: 4px double orangered;
    border-radius: 10px;
    box-shadow: 0 0 13px black;
    margin: auto;
    max-width: 1000px;



}

.map-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

}

.title-head {
    font-size: 7rem;
    font-family: 'Righteous', cursive;
    text-align: center;
    animation: bounceMePls ease-in-out 1s;

}

@keyframes bounceMePls {
    0% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    50% {
        transform: translateY(0);
    }

    60% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0);
    }
}


.title-head span {
    color: orangered;
}

.wave {
    scale: 1.7;
}

.map-caption {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.map-caption span {
    color: orangered;
}

@media screen and (max-width:768px) {

    fieldset {
        padding: 0.5rem;
    }

    fieldset legend {
        font-size: 2rem;

    }

    .title-head {
        font-size: 5rem;


    }

    .map-caption {
        font-size: 2rem;

    }

}

@media screen and (max-width:700px) {

    .n-e {
        display: block;
        width: 100%;
    }

    #name {
        width: 100%;
    }

    #email {
        width: 100%;
    }

    #sub {
        min-height: 70px;
        min-width: 100%;
    }

    #message {
        min-width: 100%;
        min-height: 350px;
    }

    .container {
        margin: 0.5rem;
    }
}

@media screen and (max-width:700px) {
    .title-head {
        font-size: 4rem;


    }
}