html {
    font-size: 16px;
}
@media only screen and (min-width: 720px) {
    html {
        font-size: 18px;
    }
}
@media only screen and (min-width: 960px) {
    html {
        font-size: 20px;
    }
}
@media only screen and (min-width: 1240px) {
    html {
        font-size: 24px;
    }
}
@font-face {
    font-family: 'RapTVFont';
    src: url('./assets/raptvfont.otf') format('opentype'),
         url('path/to/raptvfont.woff') format('woff');
}  
section {
    display: grid;
    place-items: center;
    max-height: 100vh;
}
body {
    font-family: sans-serif;
    background-color: #131316;
    color: #fafafa;
}
#banner h1 {
    margin: 0.5rem 0 0.2rem 0;
}
#banner h2 {
    font-size: 1rem;
    margin: 0 0 0.3rem 0;
}
#banner p {
    margin: 0;
    font-size: 0.8rem;
}
#banner #note {
    font-size: 0.6rem;
}
form {
    display: grid;
    place-items: center;
}
.user-form {
    width: 80%;
    max-width: 500px;
    margin-bottom: 1.2rem;
}
.user-form label {
    font-size: 1rem;
    display: block;
    font-weight: bold;
    margin-top: 10px;
    transition: 0.3s;
}
.user-form .inputs {
    width: 100%;
}
.user-form input {
    width: 100%;
    box-sizing: border-box;
    margin: 0.2rem 0 0.5rem 0;
    font-size: 12px;
}
.user-form .text {
    padding: 0.3rem;
}
.user-form button {
    width: 100%;
    border: solid 1px;
    border-radius: 0.5rem;
    height: 1.6rem;
    padding: 0 0.5rem;
    font-size: 0.7rem;
    color: #fafafa;
    background-color: #131316;
    transition: 0.5s;
}
.user-form button:hover {
    background-color: #fafafa;
    color:#131316;
    width: 101%;
}
.user-form p.errorMsg {
    color:#e66464;
}


#memeCanvas {
    height: 20rem;
    max-width: 90%;
    object-fit: contain;
}


