body {
    font-family: Campton, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    background-color: #1a2225;
}

.container {
    text-align: center;
}


.title {
    color: #fff;
    font-size: 22px;
    margin-top: 30px;
    font-weight: 400;
}
.loader-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #EC4841; 
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin-top: 50px; 
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  
button {
    padding: 20px 150px;
    font-size: 18px;
    background-color: #EC4841;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 150px;
    font-weight: 600;
    text-wrap: nowrap;
}

button:hover {
    background-color: #ec2e27;
}