@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Dancing Script';
}

p{
  font-family: Roboto, Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: small;
}

main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
}
.MainContainer{
    background-color: rgb(239, 241, 241);
    padding: 10px;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    text-align: center;
    width: 90vw;
    max-width: 600px;
    margin:auto;
    border-width: 2px;
    border-style: solid;
    border-color: rgba(255, 0, 0, 0.425);
}

.ItemContainer{
    margin-top: 10px;
    justify-content: center;
    z-index: 100;

}

.ItemCard{
    background-color: white;
    border-style: solid;
    border-radius: 5px;
    border-width: 1px;
    padding: 10px;
    margin: 20px 10px;
    display: flex;
    flex-direction: row;
    box-shadow: 0px 7px 7px 1px rgba(180, 180, 179, 0.856);
    z-index: 100;
}

.ProductPicture{
    width: 50%;
    height: 100px;
    width: 100px;
    display: flex;
}

.ProductPicture img{
    max-height: 100px;
    max-width: 100px;
    display: block;
    margin: auto;
}

.Description{
    margin: auto;
    width: 50%;
}

.Description span{
    font-family: Roboto,Arial, Helvetica, sans-serif;
}

.Description h4{
    font-family: Roboto,Arial, Helvetica, sans-serif;

}

.hoco {
    cursor: pointer;
    text-decoration: none;
    color: black;
}

.ItemCard:hover{
    background-color: rgba(255, 0, 0, 0.356);
    transition: .9s;
}



.Section{
    padding-top: 20px;
}

@media (max-width: 700px) {
    .ItemContainer{
        margin-top: 10px;
        flex-flow: row wrap;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
}


@import url("https://fonts.googleapis.com/css?family=Merienda+One");

html {
  background-color: #000;
    background-image: url(https://images.unsplash.com/photo-1531972497489-8eb337acf6e5?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=193456e9385b553747a5e0f0cbc7badb&auto=format&fit=crop&w=1334&q=80);
  background-size: cover;
  height: 100%;
  background-repeat: no-repeat;
}

body,
.more-snow {
  &:before,
  &:after {
    z-index: -1;
    content: "";
    position: fixed;
    top: -3000%;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(black, 0.01);
    background-image: url(http://www.freepngimg.com/download/winter_snow/4-2-white-snow-png.png);
    background-size: 30%;
    -webkit-animation-name: MOVE-BG;
    -webkit-animation-duration: 500s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
  }
}
body {
  &:before {
    filter: blur(6px);
    opacity: 0.8;
  }
  &:after {
    filter: blur(1px);
    top: -1500%;
    background-image: url(http://www.freepngimg.com/download/winter_snow/4-2-white-snow-png.png);
    background-size: 90%;
    background: fixed;
    animation-duration: 200s;
  }
}
.more-snow {
  &:before {
    filter: blur(4px);
    opacity: 0.8;
    top: -2500%;
    background-size: 60%;
    animation-duration: 400s;
  }
  &:after {
    filter: blur(2px);
    opacity: 0.8;
    top: -2000%;
    background-image: url(https://laviwebfiles.com/stage/codepen/4-2-white-snow-png.png);
    background-size: 70%;
    animation-duration: 300s;
  }
}

@-webkit-keyframes MOVE-BG {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(70%);
  }
}

