*{
    padding: 0;
    margin: 0;
    font-family: 'Ubuntu';
    word-spacing: 2px;
}
body{
  background-image: url(photos/Background_PR.png);
  background-size: cover;
}
img {
  -webkit-user-select: none; /* Safari */        
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard syntax */
}


#backToHome{
  width: 100%;
  height: 8vh;
  display: flex;
  align-items: center;  
}

#backToHome img{
  height: 20px;
  margin-left: 55px;
  transition: 0.5s ease;
}

#backToHome img:hover{
  height: 21px;
}

#ProductTitle{
  height: 10vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content:center; 
}
/*----- products----*/

.group{
  width: 100%;
  height: 45vh;
  min-height: 300px;
  display: flex;
  justify-content: space-evenly;
}
.frame{
  height:90%;
  width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 15px;
}
.frame:hover{
  background-color: rgba(0, 0, 0, 0.04);
  transition: 0.3s ease-in-out;
}
.frameNone{
  height:90%;
  width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}


.frame img{
  width: 200px;
  border-radius: 15px;
}
.frame:hover img {
  width: 210px;
  transition: 0.3s ease-in-out;
}
.group a {
  text-decoration: none; /* Removes underline */
  display: block;
}

.group label {
  margin-top: 5px;
  color: black; /* Changes text color to black */
  text-decoration: none; /* Ensures no underline */
}


@media only screen and (max-width:600px){

  .group{
    height: 120vh;
    flex-direction: column;

  }
  .frame{
    width: 100%;
    height: 100%;
    
  }
  .frame:hover{
    background-color: transparent;
  }
  body{
    background-image: none;
    background-color: rgb(223, 219, 0);

  }
}
