*{
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
}

body{
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/bg.jpg"); /* The least supported option. */
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 100vh;
    color: #fff;
}

.container{
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;

    padding: 40px 20px;
}

main{
    margin-top: 100px;
    display: flex;
    width: 100%;
    height: 100%;
}

header{
    font-weight: bold;
}

header div  img{
    width: 150px;
}

.left{
    width: 60%;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}

.left h1{
    font-size: 3rem;
    max-width: 600px;
    width: 100%;
    margin-bottom: 20px;
}

.left h2{
    margin-top: 20px;
    color: rgb(216, 216, 216);
}

.right{
    width: 40%;
}

.my-map{
    margin-top: 100px;
}

.my-map p {
    margin-bottom: 20px;
    font-size: 1.4rem;
    max-width: 500px;
    color: rgb(233, 233, 233);

}

.my-map__logo{
margin-top: 30px;
padding: 30px;
border: 1px solid rgb(255, 255, 255);
border-radius: 30px;
max-width: 500px;

background: rgba( 255, 255, 255, 0.25 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
}



.my-map__logo img{
    width: 300px;
}

.my-map__logo div{
    font-size: 1.3rem;
}

.right{
    display: flex;
    flex-direction: column;
}

.right h3{
    font-weight: normal;
    margin-top: 10px;
    color: rgb(224, 224, 224);
    line-height: 1.6;
}

.right form{
    display: flex;
    flex-direction: column;
    margin-top: 30px;

}

.right form input, .right form textarea{
    margin-bottom: 20px;
    padding: 10px 15px;
    border-radius: 4px;
    border: 0;
    font-size: 1rem;
}

.right button{
    padding: 10px;
    width: 100px;
    border: 0;
    border-radius: 5px;
    background: rgb(0, 132, 255);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}

@media screen  and (max-width: 380px){
    .my-map__logo img{
        width: 200px;
        }
}

@media screen and (max-width: 1000px) {
    main{
        flex-direction: column;
        align-items: center;
    }

    .left{
        margin-right: 0;
        width: 100%;
        margin-bottom: 60px;
    }

    .left h1{
        max-width: 100%;
    }

    .right{
        width: 100%;
    }

    .my-map{
        margin-top: 50px;
    }

    .my-map p {
        margin-bottom: 20px;
        font-size: 1.4rem;
        max-width: 500px;
        color: rgb(233, 233, 233);
    }
}