*{
    margin: 0;
    padding: 0;
}
body{
    height: 100vh;
    background-color: rgb(61, 54, 54);
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
h1{
    font-size: 3rem;
    color: white;
    text-align: center;
    margin-bottom: 100px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
select{
    width: 250px;
    height: 35px;
    border-radius: 3px;
    border: 0.5px solid white;
    color: white;
    text-align: center;
    background-color: black;
    margin-bottom: 40px;
}
option{
    text-align: left;
}


.loaded {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side,#000 90%,#0000);
  background: 
    var(--_g) 0%   50%,
    var(--_g) 50%  50%,
    var(--_g) 100% 50%;
  background-size: calc(100%/3) 50%;
  animation: l3 1s infinite linear;
  margin-bottom: 20px;
}
@keyframes l3 {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
}

.fashi{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.loading{
    color: white;
    font-family: sans-serif;
    display: none;
    flex-direction: column;
    align-items: center;
    height: 100px;
    width: 300px;
    text-align: center;
}
.loading h3{
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.loading p{
    font-size: 1.2rem;
}
.result{
    color: white;
    font-family: sans-serif;
    display: none;
    flex-direction: column;
    align-items: center;
    height: 150px;
    width: 300px;
    text-align: center;
}
.again{
    width: 350px;
    height: 40px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    text-align: center;
    font-size: 1rem;
    color: blanchedalmond;
    background-color: black;
}
button{
    width: 100px;
    height: 40px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    text-align: center;
    font-size: 1rem;
    color: blanchedalmond;
    background-color: black;
}
.gay{
    color: yellow;
    font-size: 1.2rem;
    margin-top: -80px;
}