@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Mukta', Helvetica, Arial, sans-serif;
    font-size: 12px;
    background-color: black;
}

/* CONTACT */
.map {
    height: 600px;
}

.map img {
    width: 100%;
    height: 100%;
    opacity: 85%;
    object-fit: cover;
}

h2 {
    font-weight: 700;
    text-align: center;
    font-size: 5em;
    color: var(--color-darkgreen);
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.089);
    transition: all 0.3s;
}

h3 {
    font-weight: 300;
    text-align: center;
    font-size: 4em;
    color: var(--color-darkgreen);
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.13);
    transition: all 0.3s;
}

h4 {
    font-size: 1.5em;
    color: aliceblue;
    margin-bottom: 10px;
}

h5 {
    font-size: 1.25em;
    color: aliceblue;
    margin-bottom: 5px;
}

h6 {
    font-size: 1.5em;
    margin: 15px;
    padding: 0px 20px 0px 15px;
    border-top: 0;
    color: aliceblue;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.13);
    transition: all 0.3s;
}

h7 {
    font-weight: 400;
    text-align: center;
    font-size: 3em;
    color: aliceblue;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.13);
    transition: all 0.3s;
}


p {
    font-weight: 300;
    font-size: 2em;
    text-align: center;
    color: var(--color-black);
    transition: all 0.3s;
}

.dot{
    width: 100%;
    height: 100%;
    position: absolute;
    background: url("/img/dot.png") center center;
    background-position-x: center;
    background-position-y: center;
    background-repeat: repeat;
    background-attachment: scroll;
    background-image: url("/img/dot.png");
    background-size: auto;
    background-origin: padding-box;
    background-clip: border-box;
}

@media screen and (max-width: 1200px) {

    h2 {
        font-size: 4em;
    }

    h3 {
        font-size: 3em;
    }

    h6 {
        font-size: 1.25em;
    }

    h7 {
        font-weight: 400;
        font-size: 2em;
    }

    p {
        font-size: 1.8em;
    } 
}

@media screen and (max-width: 750px) {

    h2 {
        font-size: 3em;
    }

    h3 {
        font-size: 2em;
    }

    

    p {
        font-size: 1.5em;
    } 
}