* {
    box-sizing: border-box;
  }
  .inter-<uniquifier> {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
  }

  html {
    height: 100%;
    width: 100%;
    font-family: "Inter", sans-serif;
    font-weight: 200;
  }
  h1{
    font-size: 60px;
    font-weight: 500;
  }
  h2{
    font-size: 50px;
    font-weight: 200;
  }
  h3{
    font-weight: 500;
  }
  p{
    font-size: 25px;
  }
  .outer-cont {
      height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    color: black;
  }
  
  .headermenu{
    border-top: 2px solid black;
    border-bottom: 5px solid rgb(219, 219, 219);
    height: 5%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }

  .main-content{
    height: 95%;
    width:100%;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
  }
  .left-side{
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .right-side{
    height: 100%;
    width:50%;
    display: flex;
    flex-direction: column;
    background-color: rgb(92, 90, 90);
    justify-content: left;
    align-items: start;
    padding: 100px;
    color: white;
  }
  
  .text{
    opacity:100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .menu-links{
    padding: 0px 10px;
    color: black;
  }
  a{
    color: black;
    text-decoration: none;
  }
  a:hover{
    color:hotpink;
    text-decoration: underline;
  }

  .brand{
    font-size: 25px;
  }

  

  
  
  