body{
background-image: url(RedRoom.jpg);
background-image:no-repeat;
background-position: center ;
background-attachment: fixed;
background-size:cover;
img:hover {
    cursor: url("Images/Cherrypie.png"), auto;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul.gallery {
  --numcolumns:10;
  --gap: 0.25em;
  --size: calc(100vw / var(--numcolumns));
  display: grid;
  grid-template-columns: repeat(var(--numcolumns), 1fr);
  
  grid-template-rows: auto;
  gap: var(--gap);
  align-items: stretch;
  
  list-style: none;
}

ul.gallery > li {
  display: block;
  height: calc(var(--size) - var(--gap));
}

ul.gallery > li img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

}

:root {
  --pink: #ffc8ea;
  --blue: #3d03fc;
}

body {
  background-color: var(--pink);
  color: var(--blue);
}

p {

font-family: "Epunda Slab", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 20px
  
}

h1 {
font-family: "Epunda Slab", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 50px
  
}

