* {
    padding: 0px;
    margin: 0px;
}

body {
    margin: auto;
}

h1 {
    text-align: left;
}

h1, h2, h3, h4, a {
    font-family: 'Quicksand', sans-serif;
}

h2, h3 {
    font-size: 25px;
    font-weight: bold;
}

h4 {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
}

a {
    font-size: 40px;
    color: black;
}

p {
    font-size: 20px;
}

.init-anim {
    transform: rotateY(360deg);
}

.container {
    background-color: #F3F2F3;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #8A7DEA; /*Color de fondo del header.*/
    padding-left: 70px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 70px;
}

.header > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bar-menu ul {
    list-style: none;
    display: flex;
}

.bar-menu li {
    margin-left: 50px;
}

.bar-menu a {
    font-size: 30px;
}

.bar-menu li:hover a {
    color: #B4F379;
}

.description {
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.description p {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-size: 30px;
    width: 900px;
    text-align: justify;  
    -moz-text-align-last: center; /* Code for Firefox */
    text-align-last: center;
    color: #333366;
    font-weight: bold;
    margin-bottom: 40px;
}

.description p:nth-child(2) {
    color: #8A7DEA;
}

.description p:last-of-type {
    margin-top: 80px;
    font-size: 40px;
}

.description img {
    margin-top: 60px;
    width: 1100px;
    height: 750px;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo h1 {
    font-size: 50px;
    color: #333366;
    font-family: 'Quicksand', sans-serif;
}

.logo > img {
    width: 110px;
    height: 75px;
    margin-right: 40px;
}

.header div:first-child h2 {
    margin-bottom: 10px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

footer a img {
    display: block;
    margin-bottom: 40px;
}

footer a img:first-of-type {
    margin-right: 40px;
}

footer a img:last-of-type {
    margin-left: 40px;
}

#lindekin {
    width: 120px;
    height: 120px;
}

#instagram {
    width: 100px;
    height: 100px;
}

@media screen and (max-width: 1100px) {
    .description > img {
        width: 100%;
        height: auto;
    }

    .description p {
        width: auto;
        font-size: 25px;
    }
}

@media screen and (max-width: 550px) {
    .header {
        display: flex;
        flex-direction: column;
    }

    .logo {
        width: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        margin-top: 30px;
    }
    
    .logo h1 {
        font-size: 20vw;
        color: #333366;
        font-family: 'Quicksand', sans-serif;
    }
    
    .logo > img {
        margin: 0;
        width: 100%;
        height: auto;
    }

    .bar-menu {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bar-menu li {
        margin-top: 30px;
        margin-left: 0;
    }
}