body {
    background-image: linear-gradient(to bottom, #000000, #141A43, #3869AB);
    height: 1000px;
}

.star {
    border-radius: 100%;
    background-color: white;
    position: absolute;
    z-index: -1;
    animation: moveit;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    cursor: pointer;
}

@keyframes moveit {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

.hidden {
    display: none;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: #141A43;
    padding: 30px;
    border-radius: 10px;
    width: 500px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: white;
    font-family: "Pinyon Script", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
}

.modal-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: white;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

.modal-content label {
    color: white;
    font-size: 1rem;
    font-weight: 200;
    font-family: "Inter", sans-serif;
    margin-bottom: 5px;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-content textarea,
.modal-content select,
.modal-content button {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

.modal-content select,
.modal-content textarea {
    background-color: #141A43;
    color: white;
}

.modal-content button {
    background-color: #141A43;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-content button:hover {
    background-color: #3869AB;
}

.close {
    color: white;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 2px;
}

.modal-content textarea::placeholder,
.modal-content select::placeholder {
    color:white;
}