@font-face { font-family: Slime; src: url('../Assets/fonts/Toxic\ Slime\ Demo.otf'); }
@font-face {font-family: Express; src: url("../Assets/fonts/expressway\ rg.otf");}

#magmum {
    position: absolute;
    display: block;
    z-index: 1;
    width: 900px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.hovered {
    animation: move 4s forwards;
}

@keyframes move {
    0% {transform: translate(0,0);}
    25% {transform: translate(1000px,0);}
    75% {transform: translate(1000px,0);}
    100% {transform: translate(0,0);}
  }

.content {
    margin: auto;
}

.main-box {
    position: absolute;
    top: 11em;
    left: 0;
    right: 0;
    margin-inline: auto;
    height: 45em;
    width: 40em;

    background-color: rgba(45, 48, 45, 0.75);
    border-width: 5px;
    border-style: ridge;
    border-color: greenyellow;
    box-shadow: inset 0 0 20px greenyellow;
}
.left-box {
    position: absolute;
    left: 20.2em;
    top: 8.5em;

    height: 50em;
    width: 20em;

    background-color: rgba(45, 48, 45, 0.75);
    border-width: 5px;
    border-style: ridge;
    border-color: greenyellow;
    box-shadow: inset 0 0 20px greenyellow;
    transform: perspective(250px) rotate3d(0, 1, 0, 10deg);
}
.right-box {
    position: absolute;
    right: 20.2em;
    top: 8.5em;

    height: 50em;
    width: 20em;

    background-color: rgba(45, 48, 45, 0.75);
    border-width: 5px;
    border-style: ridge;
    border-color: greenyellow;
    box-shadow: inset 0 0 20px greenyellow;
    transform: perspective(250px) rotate3d(0, -1, 0, 10deg);
}

.inner-content {
    width: 95%;
    max-width: 95%;
    margin: auto;
    background-color: rgba(45, 48, 45, 0.75);
    border-width: 5px;
    border-style: ridge;
    border-color: greenyellow;
    box-shadow: inset 0 0 20px greenyellow;
    margin-bottom: 10px;
}

#title {
    font-family: Slime;
    font-size: 30px;
    background: -webkit-linear-gradient(90deg, #6cff3f, #eff8cd);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: rgb(184, 165, 60);
    -webkit-text-stroke-width: 1.5px;

    margin-top: 5px;
    margin-bottom: 5px;
    line-height:normal;
}

p {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    font-family: Express;
    font-size: 13px;
    line-height: 20px;
}

br {
    margin-bottom: 20px;
}

#stamps {
    display: flex;
    justify-content: stretch;
    height: 50px;
    width: 100%;
}
#stamps img {
    height: 50px;
}