*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;  
}

body{
    background: #cfdac1;
   }
   
   .top-banner {
    display: flex;
    justify-content:space-between;
    align-items: center;
   }

   .bottom-banner {
    display: flex;
    justify-content:space-around;
    align-items: center;
   }

   .top-banner a {
    text-decoration: none;
    color: white;
   }

   .top-banner a:hover {
    color: chartreuse;
   }

   .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 10px;
   }

   
   .main {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 100%;
    height: 100vh;
    color: rgb(0, 0, 0);
   }

   .main p {
    margin: 20px 20px 20px 20px;
    font-size: 20px;
   }