*{
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    --bg-color: #333;
    --mid-color: #777;
    --dark-color: #922;
    --dark-color2: #500;
    --light-color: #ddd;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--light-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: clamp(300px,100dvw,2000px);
    
}

.cuerpo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    width: 80%;
}

.navbar{
    width: 80dvw;
}
.instructores-club{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80dvw;
    margin-top: 20px;
}

.offcanvas-body .card-instructor{
    background-color: var(--light-color);
    color: var(--bg-color);
}

.card-body .btn-primary{
    background-color: var(--mid-color);
    color: #fff;
    border: 2px solid var(--bg-color2);
}

.card-body .btn-primary:hover{
    background-color: var(--light-color);
    color: var(--dark-color2);
    border: 2px solid var(--mid-color2);
}



a h2{
    margin-left: 20px;
    margin-top: auto;
    margin-bottom: auto;
}

.logo-club{
    margin-top: 20px;
    width: 80dvw;
    z-index: 10;
}

.club{
    width: 100dvw;
    height: 48px;
    margin-top: 20px;
    padding: 10px;
    background: linear-gradient(to right,transparent,var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color));
    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 0% 100%);
    position: relative;
    z-index: -1;
}

.club h3{
    margin-top: 0;
    color: var(--light-color);
    margin-left: 48px;
    font-size: 24px;
}

.general-list{
    list-style: none;
    justify-content: left !important;
}

.internal-list{
    list-style: none;
}

iframe{
    margin: 20px;
}

.footer{
    background-color: var(--bg-color);
}