button{
    background-color: white;
    color: rebeccapurple;
    border: solid thick plum;
    border-radius: 15px;
}
button:hover {
    color: mediumpurple;
    background-color: hotpink;
}
.main{
    border: solid 20px lightpink;
    border-radius: 15px;
    height: 100%;
    width: 100%;
}
h6{
    color: slategrey;
    font-family: "Caveat", sans-serif;
    font-size: 40px;
    font-weight: bold;
}
body{
    background-image: url("watercolor.png");
    height: 100%;
}
html{
    margin: 0;
    height: 100%;
}
.title{
    color: steelblue;
    font-family: "Playball", serif;
}
.midrif{
    height: 60px;
    width: 100%;
}
.topper{
    height: 10%;
    width: 100%;
}

@media all and (min-width: 371px) and (max-width: 420px) {
    button{
        width: 100%;
        padding-bottom: 8px;
    }
    h6{
        font-size: 28px;
    }
    .button-text{
        font-size: 25px;
    }
    .title{
        height: 37px;
    }
    .topper{
        height: 1%;
    }
}
@media all and (min-width: 200px) and (max-width: 370px) {
    button{
        width: 100%;
        padding-bottom: 8px;
    }
    h6{
        font-size: 28px;
    }
    .button-text{
        font-size: 25px;
    }
    .midrif{
        height: 10%;
    }
    .title{
        height: 37px;
    }
    .topper{
        height: 1%;
    }
}