@import url("reset.css");
@import url("fonts.css");

* {
  font-family: Raleway;
}

body {
  background-color: black;
}

.banner {
  width: 100%;
  height: 605px;
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(49, 168, 221, 0.2),
      rgba(0, 0, 0, 0.6)
    ),
    url("../images/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 60px;
  border-bottom: 1px solid #33a8db;
}

.banner-content > * {
  text-align: center;
}
.banner-content {
  margin: 0 auto;
  width: 519px;
  height: 393px;
}

.banner-content .logo {
  background-color: rgba(0, 0, 0, 0.2);
  height: 260px;
  width: 260px;
  margin: auto;
  border-radius: 50%;
  padding: 16px;
  margin-bottom: 16px;
}

.logo img {
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo > p {
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(180deg, #33a8db 0%, #1472b7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: ease-in-out 0.5s;
}
.logo > p:hover {
  color: #ffffff;

  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #4aff188c,
    0 0 30px #4aff188c, 0 0 40px #4aff188c, 0 0 55px #4aff188c,
    0 0 75px #4aff188c;
  color: #ffffff;
}

.banner-content h1 {
  margin-top: 16px;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(180deg, #33a8db 0%, #1472b7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-content p {
  margin: 16px 0 24px;
  color: white;
  font-weight: 400;
  font-size: 1.25rem;
}

.button-principal {
  margin: 19px;
}
.button-principal button {
  background: transparent;
  border: 2px solid;
  border-image: linear-gradient(180deg, #3ba1cd 0%, #1572b7 100%) 1;

  width: 326px;
  height: 57px;

  color: #31a8dd;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: ease-in-out 0.5s;
  cursor: pointer;
}
.button-principal button:hover {
  color: white;
  background: rgba(255, 255, 255, 0.137);
}

#course-content {
  margin: 0 auto;
  margin-top: 100px;

  width: 792px;
  height: 325px;
}
#course-content h2 {
  color: #33a8db;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
}
#course-content p {
  margin: 20px 0 10px 0;
  color: white;
  text-align: center;
  font-size: 16px;
  padding: 20p;
}

.module {
  width: 535px;

  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 15px;

  border: 1px solid #33a8db;
  border-radius: 30px;

  background-color: #252525;
  box-shadow: -2px 6px 4px 0px #00000066 inset;

  text-align: center;
  color: white;
}
.module > span {
  color: #33a8db;
}
section {
  margin: 100px auto;
}
#transform-world {
  border-width: 1px 1px 1px 0px;
  border-style: solid;
  border-color: #33a8db;

  height: 560px;

  background-image: url("../images/woman-code.png");
  background-size: cover;
  background-attachment: fixed;
}
#transform-world > p {
  margin-top: 250px;
  margin-left: 198px;

  width: 244px;
  height: 141px;
  color: white;

  font-weight: 900;
  font-size: 2.5rem;
  text-transform: lowercase;
  max-width: 250px;
  text-shadow: 3px 2px #33a8db;
}

#professional-challenges {
  text-align: center;
  width: 800px;
}

#professional-challenges h2 {
  width: 746px;
  height: 76px;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  color: #33a8db;
}

#professional-challenges img {
  margin: 32px 0;
}
#professional-challenges p {
  font-size: 16px;
  font-style: Regular;
  color: #ffffff;
}

footer {
  text-align: center;
  width: 100%;
  height: 170px;
  background: linear-gradient(
    180deg,
    rgba(51, 168, 219, 0) 0%,
    rgba(51, 168, 219, 0.2) 99.99%,
    rgba(51, 168, 219, 0.2) 100%
  );
}
footer img{
  margin-top: 59px;
}

footer p {
  color: white;
  font-size: 16px;
}
footer p > a {
  text-decoration: none;
  color: #33a8db;
}
