:root {
  --blackish: #222;
  --whiteish: #e5e5e5;
  --red: #ff5e56;
  --yellow: #ffbd2e;
  --green: #27c93f;
  --backgroundSize: 700px;
}

body {
  box-sizing: border-box;
  margin: 0;
  height: 100vh;
  /*background-image: url('../../assets/img/blackandwhite.jpg');*/
  /*background-image: url('../../assets/img/blueandwhite.jpg');*/
  /*background-image: url('../../assets/img/greenandwhite.jpg');*/
  background-image: url('../../assets/img/egg-3525463_1280.jpg');
  /*background-image: url('../../assets/img/burpleandwhite.jpg');*/
  background-size: var(--backgroundSize);
  color: var(--whiteish);
  display: grid;
  place-items: center;
  animation: movingBackground 10s linear infinite;
}


@keyframes movingBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: var(--backgroundSize) var(--backgroundSize);
  }
}


.container {
  gap: 5px;
  background-color: black;
  border: 2px solid white;
  border-radius: 25px;
  padding: 5px;
  width: 800px;
  max-width: 100vw;
  /*height: 600px;*/
  max-height: 90vw;
}

.meringue {
  height: 30rem;
  width: 20rem;
  margin-left: -35px;
  padding-right: 10px;
  background: black;
  background-size: cover;
  border-radius: 15px;
  border-style: solid;
  border-color: #ffffff;
  border-width: 4px;
  color: white;
  font-family: consolas;
}


h2 {
 
  font-family: Consolas;
  color: white;
}

h3 {
  
  font-family: Consolas;
  color: white;
}

.btn {
  font-family: consolas;
}

