@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

* {
    margin: 20px 40px;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

body {
    background: white;
}

h3 {
    font-weight: normal;
}

.footer {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: calc(90% - 100px);
    color: #3a3a3a;
    font-size: 0.8em;
}

.footer .butaca {
    color: black;
}

.footer .butaca:hover {
    text-decoration-line: underline;
    cursor: pointer;
}

.footer .terms {
    color: black;
}

.footer .terms:hover {
    text-decoration-line: underline;
    cursor: pointer;
}

.footer .policy {
    color: black;
}

.footer .policy:hover {
    text-decoration-line: underline;
    cursor: pointer;
}