* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inika;
}

header, footer {
    background-color: #461873;
}

#logo {
    width: 60px;
    margin: 25px 0 10px 25px;
}

#imagen-diseño {
    display: none;
}

.title {
    font-size: 4rem;
    color: white;
}

.subtitle {
    font-size: 1.3rem;
    color: white;
}

.button-header-1 {
    width: 100%;
    background-color: #CBA040;
    border: none;
    color: white;
    padding: 15px 0;
    border-radius: 5px;
}

.button-header-2 {
    width: 100%;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 15px 0;
    border-radius: 5px;
}

nav {
    display: none;
}

.box-main {
    padding: 10px 0 10px 10px;
    border-left: 7px solid black;
    border-color: #CBA040;
    border-radius: 5px;
}

#services {
    padding-top: 25px;
}

.section-title {
    color: #CBA040;
    font-size: 1.4rem;
    margin-bottom: 0;
}

.section-text {
    padding-left: 15px;
}

.footer-title {
    color: #CBA040;
    text-align: center;
    margin-top: 30px;
    font-size: 1.2rem;
}

.footer-text {
    color: white;
    text-align: center;
    margin-bottom: 0;
}

@media (min-width: 600px) {
    #imagen-diseño {
        display: block;
        width: 100%;
        margin-bottom: 50px;
    }

    .box-buttons {
        display: flex;
        justify-content: space-between;
    }

    .button-header-1 {
        width: 48%;
    }

    .button-header-2 {
        width: 48%;
    }

    .nav-father {
        position: relative;
    }

    nav {
        display: block;
        position: sticky;
        top: 0;
        padding-top: 25px;
    }

    .nav-title {
        font-size: 1.2rem;
    }

    nav > a {
        color: #787878;
        text-decoration: none;
        display: block  ;
        margin-bottom: 10px;
    }
}