* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body{
  background: radial-gradient(rgb(1, 1, 10), rgb(1, 1, 20));
  transition: all 1s;
}

.main {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 1s;
}
.main header {
  position: absolute;
  width: 100%;
  padding: 30px;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: transparent;
}
.main header .logo {
  width: 60px;
  transition: 0.25s;
}
.main header .logo:hover {
  transform: translateY(-5px);
}
.main header .navigation {
  display: flex;
}
.main header .navigation li {
  list-style: none;
}
.main header .navigation li a {
  position: relative;
  text-decoration: none;
  color: rgb(255, 255, 255);
  margin-left: 40px;
  transition: 0.5s;
}
.main header .navigation li a:hover {
  color: rgb(54, 109, 197);
}
.main .content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 160px 40px 250px 40px;
  background-image: linear-gradient(rgba(1, 1, 10, 0.9), rgba(1, 1, 10, 0.8)), url(../img/homeTest4.jpeg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.main .content .text {
  width: 100%;
}
.main .content .text h2 {
  color: rgb(255, 255, 255);
  font-size: 3em;
  font-weight: 200;
  line-height: 1em;
}
.main .content .text h2 span {
  font-weight: 650;
}
.main .content .text p {
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5em;
  margin: 35px 0;
}
.main .content .text p span {
  font-weight: 700;
  color: rgb(54, 109, 197);
  transition: 0.25s;
}
.main .content .text .h2 {
  color: rgb(255, 255, 255);
  font-size: 1.5em;
  font-weight: 200;
  line-height: 1em;
}
.main .content .text .btn {
  position: absolute;
  display: inline-block;
  padding: 20px 50px;
  background: transparent;
  border: solid;
  color: rgb(255, 255, 255);
  font-size: 1.1em;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 500;
  transition: 0.35s;
}
.main .content .text .btn:hover {
  /* letter-spacing: 1px; */
  /* color: rgb(54, 109, 197); */
  transform: translate(3px, -3px);
  /* background: rgb(249, 249, 249); */
  background: linear-gradient(rgba(249, 249, 249, 0.1), rgba(249, 249, 249, 0.1));
}
.main .footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  padding: 30px;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  background: radial-gradient(rgb(1, 1, 10), rgb(1, 1, 20));
}
.main .footer .navigation-footer {
  display: flex;
}
.main .footer .navigation-footer li {
  list-style: none;
}
.main .footer .navigation-footer li a {
  color: rgb(255, 255, 255);
  font-size: 2em;
  margin-right: 20px;
  display: inline-block;
  transition: 0.25s;
}

.main .footer .navigation-footer li a:hover{
  transform: translateY(-5px);
  color: rgb(54, 109, 197);
}

@media (max-width: 600px) {
  .main {
    display: flex;
    padding: 0;
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */