@import url("https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&display=swap");

/* ! Global */

body {
  background: #001e3d;
  margin: 0px 5%;
  text-align: justify;
  font-family: "Chivo", sans-serif;
  color: #cccccc;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* * Column - Left & Right */

header {
  flex: 0 0 300px;
  max-width: 250px;
  margin: 10px 0;
  padding: 10px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
  text-align: center;
}

main {
  flex: 1 1 0;
  min-width: 0;
  margin: 10px 0;
  padding: 10px;
}

@media (max-width: 765px) {
  body {
    flex-direction: column;
  }

  header {
    margin-top: 20px;
    position: relative;
    top: auto;
    width: 100%;
    max-width: 100%;
  }

  main {
    max-width: 100%;
  }
}

/* * Titles */

h1 {
  color: #0fff0f;
  text-shadow: 0px 0px 2px black;
  font-size: 40px;
  font-weight: 700;
  display: block;
}

h2 {
  color: #ffcc66;
  text-shadow: 0px 0px 2px black;
  font-size: 30px;
  font-weight: 700;
  display: block;
}

/* * ico */

.ico {
  width: 30px;
  aspect-ratio: 1;
  padding: 5px;
  background-color: white;
  border: 2px solid black;
  border-radius: 10px;
}

.ico:hover {
  background-color: #ffe1c2;
  filter: invert(100%);
}

.a {
  text-decoration: none;
}

#launches-badge {
  margin-top: 10px;
}

/* * Logo */

#Logo {
  width: 100px;
  aspect-ratio: 1;
  border: 4px solid #ffcc66;
  padding: 10px;
  border-radius: 50%;
}

/* * Text */

article {
  margin-bottom: 30px;
}

a {
  text-decoration: none;
  color: #ffffff;
}

a:hover {
  color: #0fff0f;
}

/* * Project */

.pbtn {
  background-color: #ffcc66;
  border-radius: 10px;
  box-shadow: 0px 5px 0px #b07600;
  padding: 10px 20px;
  margin: 10px 5px;
  display: inline-block;
  width: 150px;
  border: none;
  font-weight: 700;
}

.pbtn:hover {
  transform: translateY(3px);
  box-shadow: 0px 2px 0px #b07600;
}

/* * Horizontal Ruler */
hr {
  border:2px solid #0fff0f;
  margin: 20px auto;
  width: 100%;
}
