* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    height: 100vh;
    /*display: flex;
    justify-content: center;
    align-items: center;*/
    background: #0F172A;
  }

  /*navigation*/
.nav{
    height: 3.75rem;
    background-color:#1E293B;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
#nav-content1{
    font-size: 1.5625rem;
    color: #ffffff;
    width: 60%;
    display: flex;
    justify-content: center;
}
.nav-content2{
    width: 40%;
    font-size: 1.5625rem;
    display: flex;
    justify-content: space-around;
}
a{
    text-decoration: none;
    color: #E2E8F0;
}
  
  .container {
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 10px;
    width: 300px;
  }
  .main-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
  }

  .box {
    height: 150px;
    width: 100%;
    border-radius: 8px;
    margin: 15px 0;
    background: linear-gradient(#000000, #ffffff);
  }
  
  button {
    padding: 10px 15px;
    border: none;
    background: #333;
    color: white;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background: #555;
  }
  
  p {
    margin-top: 10px;
    font-size: 14px;
  }
  