* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(0, 95, 116);

    header {
        background-color: rgb(0, 95, 116);
        text-align: center;
        padding: 1.5rem;
    }

    header h1 {

        color: rgb(23, 5, 41);
        font-size: 4rem;
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

    }

    .logo {
        width: auto;
        height: auto;
        background-size: cover;
        background-repeat: no-repeat;
        height: 20rem;
        text-align: center;
    }

    h2 {
        color: black;
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        font-size: 2rem;
    }

    nav {
        background-color: rgb(0, 95, 116);

    }

    a {
        border: 1px solid black;
        border-radius: 0.5rem;
        padding: 0, 25rem 1rem;
        text-align: center;
        font-size: 1, 5rem;
        align-items: center;

    }


    nav ul {
        list-style: none;
        display: flex;
        justify-content: center;
        font-size: 1.5rem;

    }

    nav li {
        margin: 0.5rem 1rem;
    }

    nav a {
        text-decoration: none;
        color: #000;
        font-family: sans-serif;

    }

    section {
        background-color: rgb(0, 95, 116);
        border-top: 2px solid rgb(0, 95, 116);
        font-family: 'Lucida Sans', sans-serif;
        text-align: center;
    }

    .contenedor-clases {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        margin-top: 1.5rem;

    }

    .card {
        background-color: #fff;
        width: 160px;
        padding: 1rem;
        border-radius: 10px;
        text-align: center;
        transition: scale 0.3s ease-out;
    }


    .card h3 {
        margin-bottom: 0.5rem;

    }

    .precio {
        font-weight: bold;
        margin: 0.8rem 0;
    }

    .card button {
        background-color: rgb(0, 95, 116);
        color: #fff;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        cursor: pointer;

        &:hover {
            transform: scale(1.1);
        }

    }

    footer {
        text-align: center;
    }
}