:root {
  --blackish: #222;
  --whiteish: #e5e5e5;
  --red: #ff5e56;
  --yellow: #ffbd2e;
  --green: #27c93f;
  --backgroundSize: 200px;
}


ul{
  list-style: black;
  list-style-type: none;
  margin: 0;
  padding: 0;
 
}

.icon{
  width: 5rem;
}

.icon:hover{
  width: 10rem;
}

body {
  box-sizing: border-box;
  margin: 0;
  height: 100vh;
  background-image: url('../../assets/img/redbramble.png');
 
  display: grid;
  animation: movingBackground 10s linear infinite;
background-attachment: fixed
}


@keyframes movingBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: var(--backgroundSize) var(--backgroundSize);
  }
}


  gap: 5px;
  background-color: black;
  border: 2px solid white;
  border-radius: 25px;
  padding: 5px;
  width: 800px;
  max-width: 90vw;
  /*height: 600px;*/
  max-height: 90vw;
}

h2 {
  text-align: center;
  font-family: Consolas;
  color: white;
}

h3 {
  text-align: left;
  font-family: Consolas;
  color: white;
}

.btn {
  font-family: consolas;
}
