@import url('https://fonts.googleapis.com/css2?family=DM+Sans&display=swap');/* DM SANS FONT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap'); /* MONTSERRAT FONT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;600;800&display=swap'); /* INTER FONT */
@keyframes fadein {
    0%{opacity: 0;}
    100%{opacity:1;}
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #2c2c49;
    margin: 0;
    overflow: auto;
}
.background::before {
    background-image: url(images/static/background1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(5px);
    content: "";
    position: fixed;
    display: block;
    left: 0;
    right: 0;
    height: 100%;
    z-index: -10;

    animation: fadein ease-in .75s;
    transition: transform .2s;
}
.background::before:hover {
    transform: scale(1.3);
}
.background {
    width: 100%;
    height: 100%;
}
.defaultdiv {
    background-color: #202031;
    padding: 5px;
    overflow: hidden;
    position: relative;
    width: 80%;
    margin: auto;
    margin-top: 2em;
}
.tmcicon {
    width: 20%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: auto;
    overflow: hidden;
}
.coverimage {
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
    overflow: hidden;
}
.coverimage:hover {
    transform: scale(1.1);
    transition: transform .2s;
}
.coverimage:not(:hover) {
    transform: scale(1);
    transition: transform .2s; 
}
.image-wrapper {
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    height: 35%;
    width: 50%;
}
p.regular {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 1.1em;
    color: white;
}
p.title {
    font-size: 3em;
    font-family: Inter, sans-serif;
    font-weight: 800;
    color:white;
    text-align: center;
}
p.subtitle {
    color:lightgray;
    font-size: 1em;
    text-align: center;
}