 @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

 * {
     padding: 0%;
     margin: 0%;
     box-sizing: border-box;
     font-family: 'poppins', sans-serif;
     text-decoration: none;
     border: none;
     outline: none;
     text-transform: capitalize;
     transition: all .2s linear;
 }

 body {
     width: 100%;
     min-height: 100vh;
     background: black;
     overflow: hidden;
 }

 :root {
     --green: #27ae60;
     --black: #192a56;
     --light-color: #666;
     --box-shadow: 0.5rem 1.5rem rgba(0, 0, 0, .1);

 }

 a {
     color: white;
 }

 header {
     display: flex;
     justify-content: space-between;
     padding: 15px;
 }

 .navbar {
     width: 500px;
     display: flex;
     justify-content: space-evenly;
 }

 .container {
     width: 100%;
     display: flex;
 }

 .contain {
     width: 50%;
     margin-top: 8%;
     margin-left: 8%;
     color: #fff;
 }

 .contain h1 {
     font-size: 80px;
     letter-spacing: 8px;
     color: red;
 }

 .contain h3 {
     font-size: 40px;
 }

 .contain p {
     font-size: 40px;
 }

 button {
     width: 100px;
     height: 40px;
     cursor: pointer;
     font-weight: 600;
     margin-right: 10px;
     border-radius: 10px;
 }

 button:hover {
     background-color: red;
     color: white;
 }

 span {
     color: yellow;
 }

 .image {
     width: 50%;
     margin-top: 200px;
     margin-left: 100px;
 }

 .image img {
     width: 45rem;
     height: 20rem;
 }

 .main-line {
     width: 20px;
     height: 3px;
     background-color: darkcyan;
     margin-bottom: 3px;
 }
 .menu{
    cursor: pointer;
    display: none;  
 }

 @media screen and (max-width:900px) {
     .contain {
         width: 100%;
         text-align: center;
     }

     .image {
         width: 100%;
         position: absolute;
         bottom: -200px;
     }
     .navbar{
        flex-direction: column;
        align-items: center;

     }
     .navbar a{
        display: block;
        padding: 10px 0;
        display: none;
     }
     .menu{
        display: block;

     }
     .showmenu{
        display: block;
     }

 }