@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
*{
    box-sizing: border-box;
    font-family:  "Red+Hat+Display",Helvetica, sans-serif;
    margin: 0;
    padding: 4px;
    z-index: 5;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: black;
}

input{
    max-width:400px;
    padding: 5px;
    height: 40px;
    font-size: 1.25rem;
    font-weight: bold;
    padding-left: 6px;
    border: none;
    border-radius: 12px;
    box-shadow:  0 0 7px gray;
    margin-bottom: 30px;
    
}

input::placeholder{
    padding: 5px;
    color: gray;
    
}

button{
    width: 150px;
    height:40px;
    font-size: 1.25rem;
    background-color: rgb(0, 119, 255);
    font-weight: bold;
    border: none;
    border-radius: 1rem;
    color: white;
    margin-left: 20px;
}

button:hover{
    background-color: hsl(212, 100%, 45%);
    

}
.container{
    display: none;
    flex-direction: column;
    gap: 15px;
    height: 600px; 
    width:400px;
    border: none;
    border-radius: 1.25rem;
    background-color: rgba(253, 253, 253, 0.973);
    padding: 20px;
    align-items: center;
    box-shadow: 0 0 6px rgb(116, 116, 116);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 100;
    overflow: hidden;

}
.container::before{
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    top:-30px;
    left:-30px;
    z-index: -100;
    border-radius: 50%;
    border: none;
    background: linear-gradient(67deg, #ffefba,#ffffff);
    animation: change 4s ease-in-out 0.5s infinite;

}
.container::after{
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    bottom:-30px;
    right:-30px;
    z-index: -10;
    border-radius: 50%;
    border: none;
    background: linear-gradient(67deg, #cc95c0,#dbd4b4,#7aa1d2);
    animation: change 7s ease-in-out 0.5s infinite;

}

@keyframes change {
    0%{
        height: 300px ;
        width: 280px;
        transform: rotate(25deg);
    }
    25%{
        height: 240px ;
        width: 290px;
        transform: rotate(25deg);
    }
    50%{
        height: 280px ;
        width: 300px;
        transform: rotate(20deg);
    }
    100%{
        height: 300px ;
        width: 280px;
        transform: rotate(150deg);
    }
    
}

h1{   
    font-size: 2.5rem;
    color: #000;
    background: linear-gradient(48deg, #8e2de2,#4a00e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;  

}
.card{
    font-size: 1.25rem;
    background: linear-gradient(48deg,#FF0A6C,#2D27FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;   
    font-weight: 500;
    border: none;
    width: 8em;
    height: 7em;
    box-shadow: 0 0 5px rgb(0, 0, 0);
    border-radius: 14px;

    
    
}



.icons{
    margin-bottom: -5px;
    font-size: 1.5rem;

    
}

.emoji{
    font-size: 5.5rem;
    margin:0;
}

h1 ~ div{
    color: black;
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    border-radius: 30px;
    width: 100%;
    height: 130px;
    box-shadow: 0 0 6px rgb(24, 24, 24);
    
}

.conditionDisplay{
    background: linear-gradient(48deg, #8e2de2,#4a00e0);
    -webkit-background-clip: t;
    -webkit-text-fill-color: transparent; 

}
.values{
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 5px;
    margin-left: 30px;  
    background: linear-gradient(48deg, #1402b8,#7203c8,#ec385c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;   
}

.card-container{
    display: grid;
    grid-template-columns: 1fr 1fr ;
    row-gap: 1rem;
    column-gap: 1.75rem;
}

.errorDisplay{
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
}


