* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  cursor: grab;
  font-size: 15pt;
}

.marquee-link {
  color: rgb(113, 153, 234);
}

.marquee-link:visited {
  color: rgb(113, 153, 234);
}

.marquee-link:hover {
  color: goldenrod;
    font-style: italic;
}

.button-link {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  background: none;
}

.button-link:visited {
  color: white;
}

.button-link:hover {
  color: goldenrod;
  font-style: italic;
}


/*HOME PAGE*/

.me-button {
  position: relative;
  max-width: 3%;
  transition: 0.25s;
}

.me-butt {
  padding-top: 1%;
  text-align: center;
}

.me-button:hover {
  transform: rotate(-15deg);
}

.nav-links {
  padding-top: 5%;
  align-items: center;
  justify-items: center;
  height: 75vh;
}

.nav-butt {
  align-content: center;
  background-image: url(graphics/room2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 100%;
  text-align: center;
}

.nav-butt:hover {
  background-image: url(graphics/room1.png);
}

.marquee-block {
  --total-marquee-items:3;
  height: 150px;
  width: calc(37% * (var(--total-marquee-items)));
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  padding: 0 0;
}

.marquee-right {
  animation: marqueeRight 10s linear infinite;
  position: absolute;
  width:200%;
}

span {
  width: 50%;
  float: left;
}

@keyframes marqueeRight{
  0% { 
    right: 0%; 
  }
  100% {
   right: -100%; 
  }
}

.marquee-left {
  animation: marqueeLeft 10s linear infinite;
  position: absolute;
  width:200%;
}

@keyframes marqueeLeft{
  0% { 
    left: 0%; 
  }
  100% {
   left: -100%; 
  }
}


@media screen and (max-width: 850px) {

  .me-button {
    max-width: 15%;
  }

  .nav-butt {
    max-width: 100%;
    align-self: center;
    justify-items: center;
    margin: auto;
  }
  
  .nav-links {
    display: block;
    margin-top: 0;
    align-items: center;
    justify-items: center;
    height: 40vh;
  }

}

/* NAVBAR */

.navbar {
  text-align: center;
  padding-bottom: 2%;
}

a.navbar-link {
  color: rgb(113, 153, 234);
}

a.navbar-link:hover {
  color: goldenrod;
  font-style: italic;
}

.me-button-navbar {
  position: relative;
  max-width: 25%;
  transition: 0.25s;
}

.me-button-navbar:hover {
  transform: rotate(-15deg);
}

/* DREAMS PG */

.dreams-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  column-gap: 5%;
  row-gap: 5%;
  margin-right: 5%;
  margin-left: 5%;
}

.dream-log {
  max-width: 100%;
}

.dream-date {
  font-weight: bold;
  font-style: italic;
  color: black;
  text-align: center;
  padding-bottom: 1%;
}

.dream {
  color: black;
}

@media screen and (max-width: 850px) {
  .home-button {
    max-width: 40%;
  }

  .dreams-grid {
    display: block;
    align-items: center;
    max-width: 100vw;
  }

  .dream-log {
    display:flex;
    padding-bottom: 5%;
    max-width: 100%;
    min-width: none;
  }

  .dream {
    padding-bottom: 5%;
  }
}

/* REALITY */
.reality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  column-gap: 5%;
  row-gap: 1%;
  margin-right: 5%;
  margin-left: 5%;
  transform: rotate(-1deg);
}

.reality-img {
  width: 100%;
  padding-bottom: 2%;
}

.reality-date {
  font-weight: bold;
}

.reality {

}

@media screen and (max-width: 850px) {
  .reality-grid {
    display: block;
    align-items: center;
    max-width: 100vw;
    transform: rotate(-0.15deg);
  }

  .reality {
    padding-bottom: 5%;
  }
}

/* WORK PG */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  column-gap: 5%;
  row-gap: 5%;
  margin-left: 5%;
  margin-right: 5%;
}

.work-item {
  display: grid;
  grid-template-rows: repeat(2, 90% 10%);
  gap: 7%;
  width: 100%;
}

.work-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.work-title {
  align-self: center;
  justify-self: left;
}

.work-link {
  align-self: center;
  justify-self: right;
}

.special {
 max-width: 100%;
 
}

@media screen and (max-width: 850px) {
.navbar {
  padding-bottom: 5%;
}

  .work-grid {
    display: block;
  }

  .work-item {
    padding-bottom: 20%;
  }
}

/* WORK INDV */

.work-indv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 100vw;
  gap: 2%;
  margin-left: 5%;
  margin-right: 5%;
}

.work-indv-grid-item {
  width: 100%;
  align-self: center;
  justify-items: center;
}

.work-indv-grid-item2 {
  width: 100%;
  align-self: center;
  justify-items: center;
  transform: rotate(-2deg);
}

.work-indv-grid-item1 {
  width: 100%;
  align-self: center;
  justify-items: center;
  transform: rotate(3deg);
}

.img395 {
  padding-bottom: 5%;
}

.work-indv-title {
  text-align: center;
  padding-bottom: 2%;;
}

@media screen and (max-width: 850px) {
  .work-indv-grid {
    display: block;
  }

  .work-indv-grid-item {
    padding-bottom: 5%;
  }
}


/* ME PG */


.me-description {
  margin-left: 10%;
  margin-right: 10%;
  text-align: center;
}

@media screen and (max-width: 850px) {
  .me-content {
    padding-right: 4%;
  }
}

