@import url('https://fonts.googleapis.com/css2?family=Emilys+Candy&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
}

body {
    background: url(https://offizisinyourhouse.neocities.org/backgrounds/shinyrhinestonehearts.gif);
    margin: 25px;
}

.card {
    background: transparent;
    margin: 0;
}

.capsule {
  background: white;
    width: 380px;
    margin: auto;
    padding: 10px;
    position: relative;
    border-image-slice: 36;
    border-image-width: 38px;
    border-image-outset: 17px;
    border-image-repeat: round;
    border-image-source: url(/assets/border.gif);
    border-style: solid;
}

hr {
	margin: 10px 0;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
}

.separator::before, .separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #000;
}

#flex {
    display: flex;
    width: 100%;
    justify-content: center;
}

.poo {
	display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    width: 50%;
    margin: 5px;
    text-align: center;
    border: 5px solid black;
}

@media screen and (max-width: 600px) {
    .capsule {
        width: 330px;
    }
}

/*IFRAME*/
iframe.chat {
  background: #ffffff9e;
  position: fixed;
  top: 10px;
  left: 10px;
  width: 300px;
  height: 350px;
}

@media screen and (max-width: 600px) {
    iframe.chat {
        display: none;
    }
}

/*IMGS*/
i img, p img {
    width: 32.33%;
    text-align: center;
}

x img {
  width: 24%;
  text-align: center;
}

b img {
    width: unset !important;
}

.blur {
  transition: filter 0.5s ease-in-out;
  filter: blur(10px);
}

.blur.shifted {
  filter: blur(0px);
}



@media screen and (max-width: 600px) {
    i img, p img {
        width: 31.33%;
    }
}

/*FONTS*/


p, a {
  font-family: "Emilys Candy", serif;
    color: black;
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
    margin: 0 !important;
}

a {
	text-decoration: none;
}

b, span {
  font-family: "Emilys Candy", serif;
    color: white;
}

.separator {
  font-family: "Emilys Candy", serif;
    font-weight: 400;
    font-style: normal;
}

a.button, a.button:hover {
    color: black !important;
    background: white;
}

.button {
    color: white !important;
}