*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: pink;
    font-family: Arial, Helvetica, sans-serif;
}

.container{
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    height: 80vh;
    width: 60vw;
    box-shadow: inset -8px -8px 12px rgb(185, 103, 117),
                inset 8px 8px 12px rgb(201, 95, 114);

    border-radius: 50px;
}

.content{
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.content img{
    width: 80px;
    margin-left: 170px;

}

.content h1{
    text-transform: uppercase;
    text-align: center;
    color: #d7385c;
}

.inputarea{
    display: flex;
}

.inputarea input{
    width: 200px;
    height: 30px;
    text-align: center;
    margin: 5px;
    outline: none;
    border: 2px solid #d7385c;
    padding: 20px 40px;
    font-size: 20px;
}

a{
   display: flex;
   justify-content: center;
   text-decoration: none;
   background-color: #d7385c;
   padding: 10px;
   margin: 0px 6px;
   color: #fff;
   text-transform: uppercase;
   font-size: 20px;
   font-weight: bold;
}

#print{
    display: flex;
    justify-content: center;
    background-color: #d7385c;
    margin: 20px;
    padding: 20px 50px;
    color: #fff;
    /* text-transform: uppercase; */
    font-size: 20px;
    text-align: center;
}

#statement{
    display: flex;
    justify-content: center;
    margin-top: 50px;
    text-transform: uppercase;
    font-size: 20px;
    
}


@media screen and (max-width: 768px) {
    .container {
        width: 80vw;
    }

    .container h1{
        font-size: 20px;
    }

    .content img {
        margin-left: 0;
    }

    .inputarea input {
        font-size: 10px;
        width: 100%;
        outline: none;
    }

    a, #print, #statement {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        width: 90vw;
    }
    .content img{
        width: 80px;
        margin-left: 70px;
    
    }

    .inputarea input {
        font-size: 10px;
        width: 100;
    
    }

    a, #print, #statement {
        font-size: 12px;
    }
}