/* Logo Styling */
.logo {
   width: 150px; /* fixed width */
   height: auto; /* keeps aspect ratio */
   display: block; /* makes it a block element */
   margin: 20px auto; /* centers it horizontally with spacing */
}

/* General Styling */
body {
     font-family: Arial, sans-serif;
    background: url('a.png') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
}

/* Container */
.container {
    width: 30%;
    padding: 20px;
  background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-top: 250px;
    margin-left: 500px;
    color: black;
}
.container a {
    font-family: 'Acumin Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.container a:hover {
    color: red;
}