html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-family: var(--font-primary);
    box-sizing: border-box;
}

body {
    padding-top: 5px;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.fondo {
    background-image: var(--bg-url, url('assets/img/background.webp'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f55a22;
}