*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body

.container{
    background-image: url(images/aaron-burden-cEukkv42O40-unsplash.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    color: white;
}
.row{
    width: 100%;
    padding: 0px 80px; 
}
.navbar{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px  0px;
    position: relative;
    z-index: 1;
}
.navbar ul{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.navbar ul li{
    list-style: none;
}
.navbar ul li a{
    padding: 10px 18px;
    font-family: sans-serif;
    font-size: 16px;
    color: white ;
    text-decoration: none;
}
.navbar ul li a:hover{
    background-color: rgb(3, 3, 22);
}
.navbar h1{
    color: rgb(3, 3, 22) ;
    font-size: 35px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 10px;
}
.content{
    width: 100%;
    min-height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.content h1{
    font-size: 45px;
    color:rgb(3, 3, 22);
    font-weight: 400;
}
.content p{
    font-size: 16px;
    color:white;
    padding: 10px;
    word-spacing: 3px;
    text-align: center;
    line-height: 23px;
    font-weight: 300;
}

.content button{
    background-color:rgb(3, 3, 22) ;
    width: 120px;
    height: 60px;
    border: none;
    cursor: pointer;
    display: block;
    margin: 10px;
}
.content button a{
    text-decoration: none;
    padding: 5px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}
.content button:hover{
    background-color:transparent;
    border: 1px solid rgb(3, 3, 22);
    color: black;

}
.Home-container{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    color: white;
}
@media (max-width: 768px) {
    .navbar ul {
      flex-direction: column; /* Stack items vertically */
      background-color: #333; /* You can customize the background color */
    }
    
    .navbar ul li {
      margin: 0;
      padding: 0;
      border-bottom: 1px solid #555; /* Add a separator between menu items */
    }
  
    .navbar  ul li a {
      padding: 10px 20px;
    }
    content{
        
    }
  }

  
  
  
  