body {
    background: linear-gradient(#00000092), url(erm.png) no-repeat center center fixed;
    background-size: cover;

    display: flex;
    /*from https://unsplash.com/photos/a-blurry-image-of-a-multicolored-background-Zq9Diu8LBQ4 */

}

.main-body {

    padding: 1%;
    border-radius: 10px;
    margin: auto;
    width: 85%;
    background: rgba(25, 24, 33, 0.207);
    box-shadow: 0 0 5px rgba(25, 24, 33, 0.351);
    height: fit-content;
    backdrop-filter: blur(10px) grayscale(40%);
    border-radius: 7px;
    border: 2px solid rgba(230, 230, 230, 0.37);
}

.center-container {
    display: grid;
    grid-auto-flow: column;
grid-template-columns: 70% 30%;
}


.left-container {
    padding-left: 1%;
    padding-right: 1%;
}

.right-container {
    padding: 5%;
    
    background: rgba(12, 12, 17, 0.655);
    
    border-radius: 7px;
    border: 2px solid rgba(230, 230, 230, 0.37);
}

li,
h5,
h4,
h3,
h2,
h1,
p,
a,
span {
    color: rgb(219, 219, 219);
    font-family: display;
    text-shadow: 0 0 10px black;
    -webkit-text-stroke: 1px rgba(101, 101, 101, 0.153);
   
}

h3 {
    text-decoration: underline;
    text-decoration-color: rgba(150, 37, 255, 0.557);
    text-decoration-thickness: 2px;
}

a {
    color: rgb(165, 76, 255);
    text-shadow: 0 0 5px rgba(210, 76, 255, 0.63), 0 0 10px rgba(255, 76, 222, 0.569);
}

.hc {
    color: #ec3750;
    text-shadow: 0 0 10px #ec3750, 0 0 20px #ca2339;
    text-decoration: none;
}

.badge {
    background: rgba(0, 0, 0, 0.197);
    width: 7%;
height: auto;
    margin: 10px;

    padding: 3px;

    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px rgba(161, 161, 161, 0.057) solid;

}

.transition {
    mask-image:linear-gradient(
                to bottom,
                rgba(0, 0, 0, 1) 40%,
                rgba(0, 0, 0, 0) 88%
              )
}

.badge :hover {
    transform: scale(1.1);


}

.badge img {

    margin: auto;
    vertical-align: middle;
    justify-content: center;
    width: 30%;
    float: left;
}

.badge p {
    text-decoration: none;
    font-size: 160%;
    text-align: center;
    display: flex;
    margin: auto;
    justify-content: center
}


@font-face {
    font-family: display;
    src: url(SF-Pro-Display-Regular.otf);
}

* {
    transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}


.show {
    opacity: 0%;
    animation-name: myAnimation ;
    animation-duration: 5s;
    animation-delay: 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes myAnimation {
  from {opacity: 0%;}
  to {opacity: 100;}
}