body {
  background: url(../Images/bg2_rev_wide.jpg);
  position: absolute;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  margin: 0.5em;
  font-family: 'poppins', sans-serif;
}

.winlogics{
  position:relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  filter: drop-shadow(5px 5px 7px rgb(0, 255, 255));
  animation: fadeIn 3s forwards;
  margin-top: 6em;
  margin-bottom: 2em;
  z-index: 10;
  
}

h1{
  width: 100%;
  text-align: center;
  font-weight: 200;
  font-size: 1rem;
  color: white;
  filter: drop-shadow(10px 10px 10px aqua);
  animation: fadeIn2 6.5s forwards
}

nav{
 position: fixed;
 right: 0;
 top: 0;
 background: rgba(43, 42, 42, 0.952);
 height: 100vh;
 width: 50%;
 z-index: 999;
 transform: translateX(100%);
 transition: transform .5s ease-in-out;
}

ul{
  list-style-type: none;
  padding: 0;
  margin-top: 5em;
}

a{
  color: white;
  padding: .75em 1.5em;
  display: block;
  border-radius: 1em;
  text-decoration: none;
  font-size: 1.3rem;
}

/*.products{
  font-weight: bold;
  text-decoration: underline;
}*/

a:hover{
  background: rgba(66, 66, 66, 0.562);
}

.close{
  float: right;
  margin: 1.25em;
  width: 2.5em;
  cursor: pointer;
}

header{
  display: flex;
  justify-content: space-between;
}

.hamburger-menu{
  position: fixed;
  top: 1.5em;
  right: 1.5em;
  width: 2.2em;
  cursor: pointer;
  
}

footer{
  position: fixed;
  bottom: 0;
  margin-bottom: 1px;
  color: white;
  font-weight: 200;
  text-align: center;
  width: 100vw;
  font-size: x-small;
  z-index: 998;
  
}
/*this is for js - (hamburger menu) */
.open-nav{
  transform: translateX(0%);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4em);    
    }
  to {
    opacity: 1;}
}

@keyframes fadeIn2 {
  from {
    opacity: 0;
    }
  to {
    opacity: 1;}
}

/*main media query that deals with the nav bar elements*/
@media (min-width: 550px) {
  .hamburger-menu{
    display: none;
  }
  .close{
    display: none;
  }
 
  header{
    display: grid;
    grid-template-columns: 2fr;
    justify-content: space-between;
    background: black;
  }
  nav{
    display: flex;
    transform: translateX(0);
    justify-content: space-between;
    background: rgba(150, 150, 150, 0.274);
    position: fixed;
    height: auto;
    width: 100vw;
    padding: 0;
    margin: 0;
  }
  
  ul{
    display: flex;
    margin: .75em;
  }
  a{
    font-size: 1em;
    padding: .1em 2em;
  }
  a:hover{
    background: rgba(255, 255, 255, 0.151);
  }
  .winlogics{
    margin-top: 7em;
    width: 90%;
  }
  h1{
    font-size: 1.2rem;
  }
  /*.products{
    border-style: solid;
    text-decoration: none;
    margin-left: 3em;
  }*/            
}

@media (min-width:700px) {
  .winlogics{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4em;
    width: 85%;
  }
}

@media (min-width:900px) {
  .winlogics{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.5em;
    width: 75%;
  }
  h1{
    font-size: 1.3rem;
  }
}

@media (min-width:1000px) {
  .winlogics{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.5em;
    margin-top: 6.2em;
    width: 70%;
  }
  h1{
    font-size: 1.5rem;
  }
}

@media (min-width:1400px) {
  .winlogics{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.5em;
    margin-top: 6.2em;
    width: 63%;
  }
  h1{
    font-size: 1.5rem;
  }
  a{
    font-size: 1.2rem;
    padding-right: 3em;
    padding-left: 3em;
  }
}

@media (min-width:1600px) {
  .winlogics{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.5em;
    margin-top: 6.2em;
    width: 61%;
  }
  h1{
    font-size: 1.7rem;
  }
  a{
    font-size: 1.3rem;
  }
}