body {
  margin: 0 0;
  padding: 0 0;
}

.parallax {
  width: 100%;
  z-index: -2;
  position: fixed;
}

header {
  background: #414141;
  height: auto;
}

.header_cont {
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 1000px;
  margin: 0 auto;
  padding: 100px 0;
  grid-gap: 20px;
}
.header_cont img {
  z-index: 5;
}

.header_cont_info {
  display: grid;
  grid-row-gap: 10px;
}
.header_cont_info h1 {
  color: white;
  font-family: "Raleway", sans-serif;
}
.header_cont_info p {
  color: white;
  font-family: "Raleway", sans-serif;
}
.header_cont_info a button {
  width: 300px;
  background: white;
  border: none;
  box-sizing: border-box;
  transition: 0.4s;
}
.header_cont_info a button p {
  color: black;
  transition: 0.4s;
}
.header_cont_info a button:hover {
  background: #747474;
  box-sizing: border-box;
  transition: 0.4s;
}
.header_cont_info a button:hover p {
  color: white;
  transition: 0.4s;
}
.header_cont_info a button p {
  color: black;
}

.army_wallpaper {
  height: 80%;
  position: absolute;
  z-index: 1;
  width: 30%;
}

main {
  background: #747474;
  margin: 300px 0 0 0;
  padding: 100px 10px;
  display: grid;
  justify-content: center;
  grid-gap: 50px;
}
main a {
  margin: 0 auto;
}
main a button {
  width: 300px;
  background: white;
  border: none;
  box-sizing: border-box;
  transition: 0.4s;
}
main a button p {
  color: black;
  transition: 0.4s;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
}
main a button:hover {
  background: #414141;
  box-sizing: border-box;
  transition: 0.4s;
}
main a button:hover p {
  color: white;
  transition: 0.4s;
}
main a button p {
  color: black;
}

footer {
  width: 1000px;
  margin: 100px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  font-family: "Raleway", sans-serif;
}
footer a {
  display: flex;
  text-decoration: none;
  color: white;
  align-items: center;
  justify-content: center;
  height: 40px;
  border: 2px solid white;
  border-radius: 10px;
  transition: 0.5s;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
}
footer a:hover {
  color: black;
  background: white;
  transition: 0.5s;
}

.signature {
  color: white;
  text-align: center;
  grid-column: 1/3;
  font-family: "Raleway", sans-serif;
  font-size: 22px;
}

@media (min-width: 700px) and (max-width: 1100px) {
  header {
    width: 100%;
    height: 500px;
    overflow: hidden;
  }
  .army_wallpaper {
    height: 500px;
  }
  .header_cont {
    width: 90%;
    margin: 0 auto;
    padding: 30px;
  }
  main img {
    width: 100%;
  }
  footer {
    width: 90%;
  }
}
  @media (min-width:300px) and (max-width:690px){
    
    .header_cont{
        grid-template-columns: 1fr;
        width: 90%;
        img{
            width: 100%;
        }
    }
    header{
       height: auto;
    }
    .army_wallpaper{
        display: none;
    }
    main{
        a{
            width: 100%;
            button{
                width: 100%;
            }
        }
    }
    footer{
        width: 90%;
        grid-template-columns: 1fr;
    }
    .signature{
        grid-column: 1/2;
    }
 }
}/*# sourceMappingURL=style.css.map */