@import url('https://fonts.googleapis.com/css2?family=Jacquard+24&display=swap');

.title {
    color: green;
    text-align: center;
    font-weight: bolder;
    font-size: 30;
    font-family: "Jacquard 24", system-ui;
}

a,
p {
    font-size: 16px;
    line-height: 1.5;
    color: rgb(255, 204, 0);
    text-align: center;
    font-weight: bold;
    font-family: system-ui;

}


.hint {
    font-size: 14px;
    line-height: 1.5;
    color: gray;
    text-align: center;
    font-family: system-ui;

}



.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 20px;
    flex-direction: column;




}

input[type="text"] {
    padding: 10px;
    font-size: 16px;
    border: 2px solid rgb(255, 204, 0);
    background-color: transparent;
    width: 50vw;
    border-radius: 4px;
    color: rgb(255, 204, 0);
}

button {
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid rgb(255, 204, 0);
    background-color: transparent;
    color: rgb(255, 204, 0);
    cursor: pointer;
    border-radius: 4px;
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
    background-image:
        radial-gradient(white, rgba(255, 255, 255, .2) 2px, transparent 40px),
        radial-gradient(white, rgba(255, 255, 255, .15) 1px, transparent 30px),
        radial-gradient(white, rgba(255, 255, 255, .1) 2px, transparent 40px),
        radial-gradient(rgba(255, 255, 255, .4), rgba(255, 255, 255, .1) 2px, transparent 30px);
    background-size: 550px 550px, 350px 350px, 250px 250px, 150px 150px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
}