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

body{
    background-color: black;
}
nav{
    display: flex;
    width: 100%;
    height: 60px;
    justify-content: space-between;
    padding: 15px;
    background: rgb(0,0,0);
    background: radial-gradient(circle, rgba(0,0,0,0.9697128851540616) 55%, rgba(61,0,0,0.9753151260504201) 96%);
}
nav div{
    display:flex; 
    flex-direction: row;
    font-size: 20px;
    width: 400px;
}
nav a{
    margin: auto;
    
}
.hero{
    width: 100%;
    height: auto;
    
}
.hero{
    background-image: url(https://images.unsplash.com/photo-1498084393753-b411b2d26b34?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1332&q=80);
    width: 100%;
    height: 500px;
    position: relative;
}

#hero-text{
    position: absolute;
    top: 200px;
    opacity: 100%;
    overflow: visible;
    background: rgb(149,1,1);
    background: radial-gradient(circle, rgba(149,1,1,1) 0%, rgba(149,1,1,0.364670868347339) 100%);
    font-size: 70px;
    width: 100%;
    text-align: center;
    color: black;
    font-family:'Courier New', Courier, monospace;
    font-weight:500;
}

footer{
    background: rgb(0,0,0);
    background: radial-gradient(circle, rgba(0,0,0,0.9697128851540616) 55%, rgba(61,0,0,0.9753151260504201) 96%);
    width: 100%;
    height: auto;
    display: flex;
    
}
form{
    display: flex;
    flex-direction: column;
    width: 40%;
    padding: 15px;
    color: white;
    justify-content: space-between;
    font-size: 14px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 150;
}
form input{
    border-radius: 10px;
    border: 2px solid black;
}
#submit{
    width: 100px;
    margin: auto;
    border: 2px solid black;
}
form h3{
    font-size: 20px;
    font-family: 'Courier New', Courier, monospace;
    text-decoration: underline;
    font-weight:bold;
}
.right-side{
    display: flex;
    flex-direction: column;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-style: italic;
    font-weight: lighter;
    font-size: 16px;
    width: 40%;
    margin: auto;
}
.sm_links{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    font-size: 12px;
}
.sm_links a{
    text-decoration: none;
}


main{
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    height: auto;
    width: 80%;
    justify-content: space-between;
    color: white;
}
main h2{
    font-size: 40px;
    opacity: 100%;
    overflow: visible;
    background: rgb(149,1,1);
    background: radial-gradient(circle, rgba(149,1,1,1) 0%, rgba(149,1,1,0.364670868347339) 100%);
    font-family:'Courier New', Courier, monospace;
    font-weight:500;
    text-align: center;
    
}

.para{
    text-align: justify;
    font-family:'Courier New', Courier, monospace;
    font-size: 20px;
    margin-bottom: 10px;
}

@media screen and (min-width:900px) and (max-width: 1300px) {
    nav{
      height: auto;
      width: 100%;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    nav div{
        display: flex;
        flex-direction: column;
        justify-content: center;
        
        flex-wrap: wrap;
        margin-left: 40px;
        justify-content: left;
        
    }
    .post p{
        font-size:  12px ;
        width: 100%;
    }
    .post img{
        width: 55%;
    }
  }



    @media screen and (min-width:700px) and (max-width:900px)  {
        nav{
          height: auto;
          width: 100%;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          flex-wrap: wrap;
        }
        nav div{
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex-wrap: wrap;
            
            
        }
        .post p{
            font-size:  12px ;
            width: 100%;
        }
        .post img{
            width: 55%;
        }
      }
  
  @media screen and (max-width: 699px){
    nav{
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
      }
      nav div{
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          flex-wrap: wrap;
        align-items: center;
      }
      #hero-text{
        font-size: 50px;
        top:300px;
        font-weight: 500;
      }
      

  }
