body {
    height: 100%;
    width: 100%;
    margin: 0;
    background: linear-gradient(to bottom, #000000 30%, #1C1F24 50%);
    padding: 0;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
}
.pm{
    width: 300px;
    
}
@media screen and (min-width: 650px) {
    .pm{
        width: 600px;
        
    }
}

.center{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

h1{
    color: #555DEE;
    font-family: "Bungee Tint", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.2em; /* Adjust size as needed */
}
p{
    color: white;
    padding: 5px;
}

footer{
    height: 40px;
    margin-top: 45px;
    padding: 5px 0 15px 0;
    background-color: #ffdc00;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
footer p{
    color: #000000;
    text-align: center;
    font-family: monospace;
    font-size: 0.7rem;
}
.tokdiv{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 40px 10px 25px 10px;
    padding: 0 10px 10px 10px;
  
    border-style: solid;
    border-color: white;
    border-width: 0 0 2px 0;
}

footer .tokdiv{
   padding-bottom: 0;  
   border: none;
   width: 85%;
}

.sel{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.img{
    margin-top: 30px;
} /* Added missing closing brace here */

label{
    margin-top: 10px;
    margin-bottom: 5px;
    color: white;
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-container input, .form-container select {
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
    margin-left: 5px;
    border: none;
    border-radius: 4px;
}

.form-container input[type="submit"] {
    background: #0081ff;
    color: white;
    cursor: pointer;
    width: 45%;
    margin-top: 15px;
}

.form-container input[type="submit"]:hover {
    background: gray;
}
.now{
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

 .spinner {

    width: 40px;
    height: 40px;
    border: 4px solid transparent;
    border-top: 4px solid #5bff15;
    border-right: 4px solid #5bff15;
    border-bottom: 4px solid #5bff15;
    border-radius: 50%;
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
 .spinal {

    width: 25px;
    height: 25px;
    border: 4px solid transparent;
    border-top: 4px solid orange;
    border-right: 4px solid orange;
    border-bottom: 4px solid orange;
    border-radius: 50%;
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
#complete{
    display: flex; 
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    background-color: #000000;
    padding: 7px;
    border: 4px solid white;
    border-radius: 30px;
}

@media screen and (min-width:650px) {
    #complete{
        display: flex; 
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 800px;
        padding: 5px;
        background-color: #000000;
        padding: 7px;
        border: 4px solid white;
        border-radius: 30px;
    }
}
li{
    color: white;
    margin: 5px;
    line-height: 1.6;
}
 #icon{
     animation: micer 1.5s ease-in-out infinite;
 }
 
 .org{
     background: #303030;
     width: 310px;
     border-radius: 12px;
     border: none;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px 15px;
 }
 .org p{
     margin: 2px;
 }
 .arr{
     display: flex;
     flex-direction: row;
     align-items: center;
     justify-content: space-evenly;
     width: 40%;
     padding: 3px 10px 3px 10px;
 }
.arr img{
  margin-left: 5px;
}