body {
    background-color: #ffffff;
    font-family: 'Lato', sans-serif;
    background-image: url("../images/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

footer {
    background: #000000;
}

h1 {
    font-weight: bold;
    color: #ffffff;
}

h1.root {
    font-size: 4em;
    text-align: center;
    margin-top: 0;
    color: #ffffff;
}

h2 {
    font-weight: bold;
    color: #ffffff;
    font-size: 1.5em;
}

h3 {
    font-weight: bold;
    font-size: 2em;
    margin-top: 0.6em;
    font-family: 'Dosis', sans-serif;
    letter-spacing: .3rem;
    color: #ffffff;
}

p {
    text-align: justify;
    color: #aaaaaa;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.card-dark {
    background: #111111;
}

#artists {
    text-align: justify;
}

#artists a {
    font-size: 1.8em;
    margin: 0.2em;
    color: #aaaaaa;
}

#artists a:hover {
    color: #ffffff;
}

.artists-links {
    text-align: center;
}

#header-logo {
    height: 33em;
    width: 100%;
    text-align: center;
}

#header-logo img {
    width: 20em;
    margin-top: 5em;
    animation: heart-pulse 2s infinite ease-out;
}

.social-medias a {
    font-size: 4em;
    padding: 0.2em;
    color: #aaa;
}

.social-medias a:hover {
    color: #ffffff;
}

.pictos {
    text-align: center;
    font-size: 3em;
    color: #dc3545;
}

.pictos i {
    margin: 0.3em;
}

.bg-section-1 {
    background-color: #000000;
}

.bg-section-2 {
    background-color: #202020;
}

.bg-section-3 {
    background-color: #111111;
}

.bg-section-4 {
    background-color: #000000;
}

.bg-section-5 {
    background-color: #111111;
}

.bg-section-6 {
    background-color: #000000;
}

.bg-section-7 {
    background-color: #111111;
}

strong {
    color: #ffffff;
}

@keyframes heart-pulse {
  0% {
    transform: scale(1); /* scaling to 0 */
  }
  50% {
    transform: scale(1.2); /* increasing the size */
  }
  70% {
    transform: scale(0.8); /* decreasing the size */
  }
  100% {
    transform: scale(1); /* seeting back to initial size */
  }
}

@media only screen and (max-width: 600px) {
    h3 {
        font-size: 1.5em;
    }

    #header-logo img {
        width: 18em;
    }
}


