.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: rgb(242, 231, 194);
  }
  .links{
    display:flex;
    justify-content:space-around;
    padding:0 4rem;
    margin-top:0.9rem;
    font-weight:bold;
  }
  
  .btn{
    font-size:1.1rem;
    padding:0.6em 0;
    border-radius:10px;
    outline:none;
    border:none;
    width:100%;
    background:rgb(125,125,235);
    color:black;
    cursor:pointer;
    transition:0.9s;
    margin-top:0.4em;
    font-weight:600;
  }
  .btn:hover{
    background:#07001f;
    color:white;
  }