body{
  position: fixed;
  max-width: 100%;
  max-height: 100%;
  min-width: 100%;
  min-height: 100%;
  overflow: hidden;
  margin: auto;
  background-color: rgb(250,250,250);
  user-select: none;
}

#assembled{
  position: fixed;
  top: calc(70% - 220px);
  left: 50%;
  width: 90%;
  height: 500px;
  transform: translate(-50%,-50%);
  background-image: url('../img/assembled.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.5));
  transition: 0.2s;
}

.header{
  position: fixed;
  left: 0;
  top: 70%;
  width: 100%;
  height: 75px;
  transform: translateY(-50%);
  background-color: #AF0000;
  border-top:2px solid #7F0000;
  border-bottom:2px solid #7F0000;
  transition: 0.4s;
  filter:drop-shadow(0px 0px 5px #7F0000);
  z-index: 10;
}
.header:hover{
  filter:drop-shadow(0px 0px 10px #7F0000);
}

.header .logo{
  position: fixed;
  left: 5%;
  top: -30px;
  width: 275px;
  height: 130px;
  transform: none;
  background-image: url('../img/logo.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-color: white;
  border-radius: 100%;
  border: 5px solid #7F0000;
}

.header .buttons{
  position: fixed;
  top: 0px;
  right: 5%;
  width: 600px;
  height: 100%;
}
.buttons .button{
  float: left;
  display: inline-block;
  position: relative;
  width: auto;
  cursor: pointer;
  padding: 0px 20px;
  height: 100%;
  font-size: 20px;
  font-family: Arial;
  font-weight: bold;
  color:white;
  letter-spacing: 5px;
  text-align: center;
  vertical-align: middle;
  line-height: 75px;
  opacity: 1;
  transition: 0.4s;
}

.buttons .button:hover{
  color:#FF9900;
}

.page{
  position: fixed;
  left: 0px;
  top: 100%;
  width: 100%;
  height: calc(100% - 160px);
  background-color: rgb(250,250,250);
  opacity: 0;
  transition: 400ms;
  text-align:center;
}

.product{
  display: inline-block;
  width: 200px;
  height: 250px;
  margin: 10px 4vw;
  border: 2px solid #7F0000;
  border-radius: 15px;
  background-color: #7F0000;
  filter:drop-shadow(0px 0px 5px #7F0000);
  transition: 0.4s;
}

.product:hover{
  filter:drop-shadow(0px 0px 10px #7F0000);
}

.product .product-image{
  margin: 5px 5px;
  width: 190px;
  height: 190px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
  border-radius: 15px;
}
.product .product-name{
  margin: 5px 5px;
  width: 190px;
  height: 50px;
  color:white;
  font-size: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 15px;
  vertical-align: middle;
  text-align: center;
  line-height: 50px;
  font-family: Arial;
}

.title{
  font-size: 25px;
  font-family: Arial;
  color:#7F0000;
  font-weight: bold;
  margin-top: 30px;
  letter-spacing: 2px;
}

.paragraph{
  font-size: 20px;
  font-family: Arial;
  color:black;
  padding: 0 10%;
  line-height: 35px;
}

b{
  color:#7F0000;
}

@media only screen and (max-width: 1000px) {

  #assembled{
    position: fixed;
    top: calc(70% - 180px);
    left: 50%;
    width: 90%;
    height: 500px;
    transform: translate(-50%,-50%);
    background-image: url('../img/assembled.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.5));
  }

  .header{
    position: fixed;
    left: 0;
    top: 70%;
    width: 100%;
    height: 170px;
    transform: translateY(-50%);
    background-color: #AF0000;
    border-top:2px solid #7F0000;
    border-bottom:2px solid #7F0000;
    transition: 0.4s;
    filter:drop-shadow(0px 0px 5px #7F0000);
  }
  .header:hover{
    filter:none;
  }

  .header .logo{
    position: fixed;
    left: 50%;
    top: 10px;
    width: 200px;
    height: 95px;
    transform: translateX(-50%);
    background-image: url('../img/logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-color: white;
    border-radius: 100%;
    border: 5px solid #7F0000;
  }

  .header .buttons{
    position: fixed;
    top: 120px;
    right: 0px;
    width: 100%;
    height: 40px;
    text-align:center;
  }
  .buttons .button{
    float:none;
    display: inline-block;
    position: relative;
    width: auto;
    cursor: pointer;
    padding: 0px 20px;
    height: 100%;
    font-size: 3vw;
    font-family: Arial;
    font-weight: bold;
    color:white;
    letter-spacing: 1px;
    text-align: center;
    vertical-align: middle;
    line-height: 40px;
    opacity: 1;
    transition: 0.4s;
  }

  .buttons .button:hover{
    color:#FF9900;
  }
  .page{
    position: fixed;
    left: 0px;
    top: 100%;
    width: 100%;
    height: calc(100% - 200px);
    background-color: transparent;
    opacity: 0;
    transition: 400ms;
    text-align:center;
    overflow-y: auto;
  }

  .product{
    display: inline-block;
    width: 160px;
    height: 200px;
    margin: 10px 10px;
    border: 2px solid #7F0000;
    border-radius: 15px;
    background-color: #7F0000;
    filter:drop-shadow(0px 0px 5px #7F0000);
    transition: 0.4s;
  }

  .product:hover{
    filter: none;
  }

  .product .product-image{
    margin: 5px 5px;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
    border-radius: 15px;
  }
  .product .product-name{
    margin: 5px 5px;
    width: 150px;
    height: 35px;
    color:white;
    font-size: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 15px;
    vertical-align: middle;
    text-align: center;
    line-height: 35px;
    font-family: Arial;
  }

  .title{
    font-size: 20px;
    font-family: Arial;
    color:#7F0000;
    font-weight: bold;
    margin-top: 0px;
    letter-spacing: 2px;
  }

  .paragraph{
    font-size: 12px;
    font-family: Arial;
    color:black;
    padding: 0 10%;
    line-height: 20px;
  }
}
