@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');


*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #011627;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background:  linear-gradient(
        135deg, #011627, #005f88, #00a3c4, #48cae4
    );
} 

#main-content{
    width: 500px;
    height: 600px;
    background-color: #fdfffc;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    align-items: center;  
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35) ;
}

img{
    width: 250px;
    height: 150px;
    background: #011627;
    border-radius: 20px;
    padding: 0px;
    margin: 0 auto 20px auto;
    display: block;
}

#text-input{
    width: 100%;
    height: 40px;
    margin-top: 20px;
    border: 1px solid #011627;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
}

#check-btn{
    width: 100%;
    height: 40px;
    margin-top: 20px;
    border: 1px solid #011627;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    background: #011627;
    color: #fdfffc;
    font-weight: 700;
    cursor: pointer;
}
#check-btn:hover{
    border: 1px solid #011627;
    scale: 1.02;
    background-color: #fff;
    color: #011627;
    transition: all 0.3s ease;
}

#thanks{
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #011627;
}

#mainText {
    font-size: 2rem;
    font-weight: 700;
    color: #011627;
    margin-top: 20px;
    text-align: center;
}

#result {
    text-align: center;
    margin: 20px;
}