* {
    box-sizing: border-box;
}
body {
    background-image: linear-gradient(to right,#010100 ,#7d8215);
    color:white;
    margin:0;
}

.spacer {
    height: 200px;
}

p {
    text-align: justify;
    line-height: 1.4;
}
.flex-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.flex-container > div {
    margin: 10px;
}
nav {
    background-image: linear-gradient(to right,#010100 ,#7d8215);
    color: white;
    position: fixed; 
    top: 0;
    width: 100%;
    z-index: +1;
}

nav img {
    border: 1px solid white;
    width: 150px;
    height: auto;
}

button {
    font-size: 20px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, .0);
    border: none;
    color: white;
}
.hero-head{
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 350px;
  max-height: none;
  display: flex;
  position: relative;
  margin-top: 150px;
}
.hero-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
}
.test {/*Just a test delete*/
    color: white;
}
.dropdown {
    float: left;
    overflow:hidden
}
.dropdown .dropbtn {
    font-size: 20px;
    border: none;
    color: white;
    background-color: inherit;
}
.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    padding: 5px;
}
.dropdown-content a {
    float:none;
    color: white;
    display: block;
    text-align: left;
    padding: 3px;
}
.dropdown-content a:hover {
    background-color:#7d8215;
}
.dropdown:hover .dropdown-content {
    display: block
}
.box {
    display: inline-block;
    margin-top:15px;
    margin-inline: 15px;
}
a:link {
    color: white;
    font-weight: bolder;
    text-decoration: underline;
}

a:visited {
    color:beige;
    font-weight: bolder;
}

footer {
    width: 100vw;
    border-top: 1px solid white;
}
.foot-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}
/*.foot-container > div {
    width: 500px;
    margin: 5px;
    text-align: left;
}*/

.flex-item-left{
    flex: 33%;
    text-align: center;
    padding: 15px;
}
.flex-item-center{
    flex: 33%;
    text-align: center;
    padding-block: 10px;
}
.flex-item-right{
    flex: 33%;
    text-align: right;
    padding-left: 15px
}
@media (max-width: 800px) {
    .flex-item-right,.flex-item-center, .flex-item-left {
      flex: 100%;
    }
}
#hpg {
    display: grid;
    place-items: center;
}
#contact {
    display: grid;
    place-items: center;
}

#contact input {
    width: 50%;
}

#contact textarea {
    width: 50%;
}

#hpgpulse {
    margin: 5px;
    border: 1px solid white;
    border-radius: 5px;
}