:root {
  --default-green: #1db954;
  --light-green: #1ed760;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

body {
  font-family: 'Roboto', sans-serif;
}

/* utility classes */
.btn-primary {
  background: var(--default-green);
  color: white;
  text-transform: uppercase;
  padding: 15px 60px;
  border: none;
  border-radius: 5rem;
  letter-spacing: 1px;
  font-weight: bold;
  transition: all 300ms ease;
}

.btn-primary:hover {
  background: var(--light-green);
  cursor: pointer;
}

/* navbar */
#navbar {
  display: flex;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  justify-content: center;

  top: 0;
  width: 100%;
}

#navbar .navbar-container {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.logo {
  height: 40px;
  width: auto;
}

#navbar .navbar-container ul {
  display: flex;
  list-style: none;
  font-weight: bold;
}

#navbar .navbar-container ul li {
  padding: 0 20px;
  transition: all 300ms ease;
}

#navbar .navbar-container ul li:hover {
  color: var(--default-green);
  cursor: pointer;
}

#navbar .navbar-container ul li:nth-child(3) {
  border-right: 1px solid white;
}

/* showcase */
#showcase {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

#showcase .showcase-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#showcase .showcase-container h1 {
  font-size: 104px;
  color: var(--light-green);
  font-family: spotify-circular, Helvetica, Arial, sans-serif;
}

#showcase .showcase-container p {
  margin: 15px 0;
  font-size: 1.1rem;
}

/* footer */
#footer {
  background: black;
  color: white;
  padding: 50px 0 0 0;
}

#footer .footer-content .footer-menu {
  margin: 0 20px;
  list-style: none;
}

#footer .footer-content .footer-menu .footer-menu-item {
  margin: 25px 0;
  transition: all 300ms ease;
}

#footer .footer-content .footer-menu .footer-menu-item:hover {
  color: var(--default-green);
  cursor: pointer;
}

#footer .footer-content .footer-menu p {
  font-weight: bold;
  text-transform: uppercase;
  color: #919496;
  font-size: 0.8rem;
}

/* socials */

.socials {
  display: flex;
}

.socials i {
  margin: 0 20px;
  font-size: 1.5rem;
  border-radius: 50%;
  background: #222326;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.socials i:hover {
  color: var(--default-green);
  cursor: pointer;
}

.footer-info .rights .country p {
  transition: all 300ms ease;
}

.footer-info .rights .country p:hover {
  color: var(--default-green);
  cursor: pointer;
}

@media (min-width: 1025px) {
  #navbar {
    position: fixed;
  }
  #navbar .menu-mobile {
    visibility: hidden;
  }

  #showcase {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background: url('https://www-growth.scdn.co/static/home/bursts.svg');
    background-color: rgb(41, 65, 171);
    background-repeat: no-repeat;
    background-size: 175%;
    background-position: 46% 4%;
    min-height: 846px;
  }

  #footer .footer-content {
    display: flex;
    width: 100%;
    margin: auto;
    justify-content: space-around;
  }

  #footer .footer-info {
    width: 100%;
    font-weight: bold;
    color: #919496;
    font-size: 0.75rem;
    padding: 50px 10px 0 10px;
    display: flex;
    justify-content: space-between;
  }

  /* info */
  .footer-info {
  }

  .footer-info .footer-info-items {
    display: flex;
    justify-content: space-between;
    list-style: none;
  }
  .footer-info .footer-info-items .footer-info-item {
    margin: 0 10px;
    transition: all 300ms ease;
  }

  .footer-info .footer-info-items .footer-info-item:hover {
    color: var(--default-green);
    cursor: pointer;
  }

  .footer-info .rights .country {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 10px;
  }

  .footer-info .rights .country .brazil-flag {
    height: 20px;
    width: auto;
    display: inline-block;
    margin-left: 10px;
  }
}

/* mobile */
@media (max-width: 1024px) {
  body {
    max-width: 100vw;
    height: 100vh;
  }

  #navbar {
    background: black;
    display: flex;
    justify-content: space-between;
    height: 54px;
    width: 100%;
  }

  #navbar .navbar-container ul {
    width: 1px;
    height: 1px;
    bottom: 4rem;
  }
  #navbar .navbar-container {
    width: 98%;
  }

  #navbar .navbar-items {
    overflow: auto;
  }

  .logo {
    height: 26.5px;
    padding: 0 1rem;
  }

  #navbar .menu-mobile {
    display: flex;
    align-items: flex-end;
    margin-left: auto;
    font-size: 1.5rem;
  }

  #navbar ul li {
    visibility: hidden;
  }

  #showcase {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background: url(https://www-growth.scdn.co/static/home/bursts-mobile.svg);
    background-color: rgb(41, 65, 171);
    background-position: center top 40%;
    background-size: 215%;
  }

  #showcase .showcase-container h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 56px;

    text-align: center;
  }

  #showcase .showcase-container p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    line-height: 24px;
    width: 312px;
    color: var(--light-green);
  }

  .btn-primary {
    background: #1ed760;
    color: #2941ab;
    padding: 1rem 2rem;
  }

  #footer .footer-content {
    margin-inline-start: -5px;
  }

  #footer .footer-content .logo {
    margin-bottom: 2rem;
  }

  div .footer-menu {
    padding: 1rem -4rem;
    padding: 20px 0;
  }

  #socials i {
    margin-top: 5rem;
    border-radius: 50%;
    background: #222326;
    width: 44px;
    height: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .footer-info {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
  }

  .footer-info .footer-info-items .footer-info-item {
    font-size: 10px;
    padding: 1rem;
    position: initial;
    color: #919496;
  }

  .footer-info-items {
    display: flex;
    flex-wrap: wrap;
  }

  .footer-info .rights {
    font-size: 10px;
    color: #919496;
  }
}
