@import 'mardoto.css';

body {
    font-family: 'Mardoto', sans-serif;
    background: rgb(240,209,48);
    background: radial-gradient(circle, rgba(240,209,48,1) 0%, rgba(184,148,36,1) 100%);
    min-height: 100vh;
}

h1, h2, h3, h4 {
    text-align: center;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 17px;
    position: relative;
    display: inline-block;
}

img#credit-card {
    position: absolute;
    right: -20px;
    top: -20px;
    transform: translateX(100%)
}

a {
    color: #16239e;
    font-weight: bold;
}

ul {
    list-style-type: none;
}

ul li {
    margin-top: 10px;
}

#contract {
    background-color: white;
    padding: 40px 20px;
    height: 50vh;
    overflow-y: scroll;
    margin-bottom: 20px;
    margin-top: 20px;
}

footer p {
    text-align: center;
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    img#credit-card {
        position: static;
        display: block;
        margin-top: 20px;
    }
}