body {
    background-color: #7AC0CC;
    font-family: 'Coming Soon', cursive;
    line-height: 1.4;
    font-size: 18px;
    color: #292929;
}

section {
    margin-bottom: 2.5em;
}

.flag {
    width: 20px;
}

.clouds {
    display: flex;
    justify-content: space-between;
    height: 400px;
    color: #2274A4;
    overflow: hidden;
}

.clouds img {
    width: 100%;
}

.clouds h1 {
    text-align: center;
    font-size: 1.1em;
    margin-top: 2em;
}

.clouds::after {
    content: " ";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    transform: translateY(-36%);
    background: radial-gradient(circle, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 50%);
    height: 100vw;
    width: 100vw;
}

.clouds .cloud-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.clouds .cloud-left {
    display: flex;
    flex-direction: column;
}

.clouds .cloud-left img {
    max-width: 180px;
    -webkit-animation: slide-in-left 1.5s cubic-bezier(0.16, 0.19, 0.65, 1.02) both;
	        animation: slide-in-left 1.5s cubic-bezier(0.16, 0.19, 0.65, 1.02) both;
}

.clouds .cloud-right img {
    max-width: 190px;
    -webkit-animation: slide-in-right 1.5s cubic-bezier(0.16, 0.19, 0.65, 1.02) both;
	        animation: slide-in-right 1.5s cubic-bezier(0.16, 0.19, 0.65, 1.02) both;
}

.clouds .logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clouds { 
    width: 100%;
}

.container {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

#people {
    margin-top: -100px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1em;
}

#people img {
    max-width: 350px;
}

#listen p {
    text-align: center;
}

#listen .links {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

h2 {
    text-align: center;
}

#listen h2 {
    padding: 0 1.5em;
}

#listen .link {
    padding: 1em;
    text-align: center;
    flex-shrink: 1;
    flex-basis: auto;
}

#listen .link a {
    display: block;
    color: white;
    text-decoration: none;
    transition: color ease-in 150ms;
}

#listen .link img {
    transition: transform ease-in 150ms;
    width: 100%;
}

#listen .link:hover img {
    transform: scale(1.1);
}

#listen .link:hover a {
    color: #2274A4;
}

#listen .link span {
    display: block;
}

#cover-art {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex: 1;
}

#cover-art img {
    display: flex;
    max-width: 490px;
    width: 100%;
}

footer {
    text-align: center;
    font-size: 0.8em;
}

#soc {
    text-align: center;
}

#soc img {
    max-width: 48px;
    transition: transform ease-in 150ms;
    width: 100%;
}

#soc img:hover {
    transform: scale(1.1);
}

@media(max-width: 880px) {
    
    .clouds {
        height: 300px;
    }
    
    .clouds .cloud-left img {
        max-width: 140px;
    }
    
    .clouds .cloud-right img {
        max-width: 150px;
    }

    #people {
        margin-top: -50px;
    }
    
    #people img {
        max-width: 250px;
    }

    .clouds::after {
        transform: translateY(-30%);
    }
}

@media(max-width: 600px) { 
    #listen .links {
        justify-content: center;
    }

    #listen .link {
        width: 120px;    
    } 

    #listen .link img {
        max-width: 64px;
    }

    .clouds::after {
        transform: translateY(-25%);
    }
}

@-webkit-keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-100px);
              transform: translateX(-100px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-100px);
              transform: translateX(-100px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }

  @-webkit-keyframes slide-in-right {
    0% {
      -webkit-transform: translateX(100px);
              transform: translateX(100px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-right {
    0% {
      -webkit-transform: translateX(100px);
              transform: translateX(100px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  
  