@import url('https://fonts.googleapis.com/css2?family=Rubik+80s+Fade&display=swap');

body {
  font-family: 'Times New Roman', Times, serif;
  background-color: #919191;
  width: 60%;
  margin: auto;
}

.item{
    margin: 100px 10px;
    border: 1px black solid;
    width: 100%;
    height: 500px;
}

.content{
    margin: 100px;
    height: 600px;
}

nav {
  position: fixed;
  top: 20px;
  left: 20px;
}

h1 {
  font-family: "Rubik 80s Fade";
  font-weight: bold;
}

.four04 {
  font-size: 32px;
}

.four04:hover {
  color: blue;
}

.four04-big {
  font-size: 64px;
}
.four04-big:hover {
  color: blue;
}

#blue {
  color: blue;
  font-size: 64px; 
}

.cursor {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
  }
