@import url("https://fonts.googleapis.com/css2?family=Shippori+Antique+B1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
*, :before, :after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Shippori Antique B1", sans-serif;
  background-color: #131515;
  color: #F7F7FF;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

section {
  text-align: center;
  height: 100%;
}
section h2 {
  text-align: left;
  margin: 60px 0 60px 100px;
  font-size: 3.4rem;
  position: relative;
}
section h2:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: -1;
  background-color: #FFD447;
  width: 80%;
  height: 5px;
}

.price-block {
  display: flex;
  justify-content: space-around;
  height: 300px;
}
.price-block .price-web, .price-block .price-graphic {
  padding: 40px;
  border-radius: 1rem;
  box-shadow: rgba(246, 238, 2, 0.2) 0px 2px 8px 0px;
}
.price-block ul {
  height: 100%;
  list-style-type: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-block ul li {
  margin-bottom: 15px;
}

#missions {
  margin-bottom: 100px;
}
#missions .missions-block {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#missions .missions-block ul {
  height: 100%;
  list-style: none;
}
#missions .missions-block ul li {
  margin-bottom: 15px;
  font-size: 2rem;
}

#footer {
  height: 80px;
  border-top: 1px solid #F7F7FF;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer i {
  font-size: 50px;
  cursor: pointer;
  transition: 0.3s;
}
#footer i:hover {
  color: #FFD447;
}

header {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  margin: 0 auto;
}

.about-text {
  text-align: end;
  color: #F7F7FF;
  font-size: 4rem;
}
.about-text strong {
  color: #FFD447;
}

.logo {
  color: #F7F7FF;
  font-size: 2.4rem;
  font-family: "Lobster", sans-serif;
  cursor: pointer;
}

nav {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 100;
}
nav ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  height: 70px;
}
nav ul li:not(:last-child) {
  margin-right: 10px;
}
nav ul li a {
  padding: 15px;
  text-decoration: none;
  color: #F7F7FF;
  text-transform: uppercase;
  transition: 0.3s;
  font-size: 1.8rem;
}
nav ul li a:hover {
  color: #FFD447;
}

.price-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.price-card {
  width: 450px;
  margin: 15px 0;
  border: 1px solid #131515;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

button {
  width: 50%;
  margin: 0 auto;
  border-radius: 1rem;
  padding: 15px 30px;
  border: none;
  background-color: #FFD447;
  color: #F7F7FF;
  font-weight: bold;
  font-size: 1.6rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
button:hover {
  opacity: 0.75;
}

/*# sourceMappingURL=style.css.map */
