@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


body{
    position: relative;
    /* background: url('../images/earth.jpg'); */
    background-size: cover;
}

#myvideo{
    object-fit: cover;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
}

/***************************************Main Container**************************************/

.container{
    width: 1400px;
    height: 100vh;
    margin: auto;
}


#heading{
    text-align: center;
    font-size: 3.2rem;
    word-spacing: 1rem;
    font-family: 'Monoton', cursive;
    color: #a3bcf9;
}

/****************************************Content Box**************************************/

.main{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 8px double #a3bcf9;
    border-radius: 20px;
    width: 1400px;
    height: 450px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.content{
    /* border: 2px solid blue; */
    color: #fff;
    width: 50%;
    margin: 20px 30px;
    padding: 0px 50px;
    text-align: center;
}


.content p{
    margin: 20px 0px;
    /* border: 1px solid white; */
    font-family: 'Monoton', small;
    font-size: 1.8rem;
    font-weight: 800;
    text-align: left;
}


#map{
    width : 700px;
    height: 350px;
    margin: 20px 30px;
    border: 8px groove #a3bcf9;
    border-radius: 20px;
}

