
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: cursive;

}


@media (max-width: 600px) {

    .main{
        padding: 15px;
    }

    .btn{
        font-size: 16px;
    }

    .input-text{
        font-size: 14px;
    }
}


body{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.main{
    background-color:rgb(140, 255, 8);
    border-radius: 5px;
    padding: 15px 15px;
    box-shadow: 3px 3px 3px 0px;
   
}

.input{
    padding: 10px 10px;
    border: 3px solid black;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 10px 10px;
} 

.input-text{
    padding: 10px 10px;
    width: 90%;
    font-size: 16px;
    
}


.btn{
    padding: 10px 10px;
    border-radius: 5px;
    margin: 10px;
    
    background-color: rgb(8, 217, 249);
    font-size: 20px;
    cursor: pointer;
    

}

.btn:hover{
    background-color: rgba(92, 92, 204, 0.716);
   
}

.footer {
    text-align: center;
    padding: 15px;
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
    background: #ff0000;
    position: fixed;
    bottom: 0;
    width: 100%;
}


.header {
    width: 100%;
    padding: 15px;
    text-align: center;
    background: #ff0000;
    color: white;
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
    position: fixed;
    top: 0;
    left: 0;
}