body {
    background-color: #0a1f44;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}
a {
  color: white;
  text-decoration: none;
}
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1;
}
.container {
    background: rgba(0, 0, 0, 0.3);
    font-size: 2rem;
    border: 3px solid #ffffff;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;   
    position: relative;
    z-index: 2;
}
.container:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.4);
}
button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    border-radius: 5px;
    transition: background 0.3s ease;
}
button:hover {
    background: white;
    color: #0a1f44;
}
.stars {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}
.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: white;
    opacity: 0.8;
    border-radius: 50%;
    animation: twinkle 1.5s infinite alternate ease-in-out;
}
@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

