body {
    font-family: 'Roboto', sans-serif; /* Use the Roboto font from Google Fonts */
    background-color: #18181b; /* Dark background color */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    animation: fadeInAnimation ease 2.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }

@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

  .container {
    text-align: center;
  }

  .logo {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    width: 300px; /* You can adjust the width as needed */
  }

  .text {
    color: #F5EDED; /* Light gray text color */
    font-size: 24px;
    margin-top: 20px;
    font-weight: bold;
  }

  .btn {
    position: relative;
    padding: 10px 20px;
    text-decoration: none;
    text-align: center;
    border: 2px solid #D72323;
    border-radius: 1ex;
    font-weight: bold;
    font-size: 16px;
    
    display: inline-block;
    background: transparent;
    color: #F5EDED; /* Light gray button text color */
    cursor: pointer;
    overflow: hidden;
  }
  .span{
    background: #D72323;
    height: 100%;
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.25s;
  }
  .span2{
    background: #000000;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
  .btn:hover .span{
    width: 100%;
  }