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

*{
    margin: 0;
    box-sizing: border-box;
    font-family: 'Oxygen', sans-serif;
    font-size: xx-large;
}
body{
    background-color: #0e173f;
    display: flex;
    justify-content: center;
}
.card{
    display: block;
    background-color: #E7ECEF;
    width: 550px;
    height: 550px;
    border-radius: 15px;
    margin-top: 5%;
    padding: 1em;
    box-shadow: rgb(2, 11, 27) 0 20px 20px;
}
#inputBox{
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 3%;
}
.card input{
    border: 2px #272932 solid;
    font-size: large;
    width: 60%;
    border-radius: 15px;
}
.card button{
    width: 35%;
    transition: 1s ease;
    border-radius: 15px;
    background-color: #00A6FB;
    color: #E7ECEF;
    border: none;
}
.card button:hover{
    background-color: #272932;
}
#imgBox{
    max-width: 70%;
    height: auto;
    margin: auto;
    margin-top: 5%;
    display: none;
}
#imgBox img{
    width: 100%;
    height: 100%;
}