@import url('https://fonts.googleapis.com/css2?family=Emilys+Candy&display=swap');

* {
  box-sizing: border-box;
}

body {
  cursor: url(/pixels/VIRUXXX-chibi-cursor.png), auto;
  background: url(/backgrounds/yellow-cushion.png);
  margin: 0;
  font-family: "Emilys Candy", serif;
}

.capsule {
  width: 350px;
  margin: auto; 
  background-image: url(/backgrounds/black-transparent-lines.png);
  background-size: 70px;
  background-color: #272727;
  padding: 10px;
  position: relative;
  
  border-image-slice: 40;
  border-image-width: 30px;
  border-image-outset: 14px;
  border-image-repeat: round;
  border-image-source: url(https://i.postimg.cc/brjzxtwL/5.gif);
  border-style: solid;
}

.topnav {
  text-align: center;
  width: 100%;
  background: black;
  padding: 10px;
  margin-bottom: 20px;
}

.card {
  border-image: url(/borders/black-fabric-ruffles.png) 65 round;
  border-width: 15px;
  overflow: hidden;
  border-style: solid;
  filter: drop-shadow(0px 0px 6px white);
  width: 229px;
  height: 229px;
  transition: transform ease 0.2s;
  margin: auto;
}

.card:hover {
  transform: rotate(5deg);
  filter: drop-shadow(0px 0px 1px white) drop-shadow(0px 0px 1px white) drop-shadow(0px 0px 1px white) drop-shadow(0px 0px 1px white) drop-shadow(0px 0px 1px white) drop-shadow(1px 1px 0px #0000009d);
}

.todolist {
  background: white;
  width: 200px;
  height: 120px;
  margin: 10px;
  padding: 10px;
  overflow: scroll;
  position: fixed;
  filter: drop-shadow(0px 0px 6px black);
  bottom: 0;
  right: 0;
  z-index: 100;
}

/*IMGS*/
.crd.img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: white;
  background-size: cover;
  background-repeat: no-repeat;
}

/*FONTS*/
.topnav a {
  color: white;
}

a {
  cursor: url(/pixels/VIRUXXX-chibi-select.png), auto;
}

p {
  margin: 0;
}



















