@font-face {
  font-family: 'CustomFont';
  src: url('fonts/Ubuntu-Bold.ttf');
}
* {
    font-family: 'CustomFont';
}

html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: rgb(26, 20, 30);
    color: white;
    background: url('backTestV2.jpg');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}



.main {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.main.glowEffect {
    transition: all 0.15s ease, box-shadow 0.5s ease 1s;
    box-shadow: inset 0px 0px 0px 0px #0093a1,
    inset 0px 0px 0px 0px rgba(118, 0, 122, 0.75),
    inset 0px 0px 0px 0px rgba(33, 0, 55, 0.5);
}
.main.glowEffect.loaded {
    box-shadow: inset 0px 0px 16px 0px #0093a1,
    inset 0px 0px 16px 4px rgba(118, 0, 122, 0.75),
    inset 0px 0px 12px 6px rgba(33, 0, 55, 0.5);
}



.main.loaded .card {
    transform: scale(1);
}
.card {
    filter: brightness(115%);
    transition: all 0.5s ease, transform 1s ease;
    width: fit-content;
    min-width: 50%;
    height: fit-content;
    min-height: 50%;
    margin: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    overflow: clip;
    transform: scale(0);
}

.card.glowTheme {
    transition: all 0.5s ease, transform 1s ease;
    color: white;
    background-color: rgba(14, 0, 26, 0.247);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1),
    inset 0 1px 2px rgba(100, 100, 100, 0.3),
    inset 0px 0px 4px 0px #0BE8F9,
    inset 0px 0px 4px 1px rgba(242,21,249,0.75),
    inset 0px 0px 6px 2px rgba(172,56,249,0.5),
    0px 0px 8px 0px #0BE8F9,
    0px 0px 8px 2px rgba(242,21,249,0.75),
    0px 0px 12px 5px rgba(172,56,249,0.5);
    backdrop-filter: blur(4px);
}
.main.animationDone .card.glowTheme:hover {
    transition: all 0.3s ease, transform 0.5s ease;
    transform: scale(1.03);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1),
    inset 0 1px 2px rgba(100, 100, 100, 0.3),
    inset 0px 0px 2px 0px #0BE8F9,
    inset 0px 0px 2px 1px rgba(242,21,249,0.75),
    inset 0px 0px 4px 2px rgba(172,56,249,0.5),
    0px 0px 16px 0px #0BE8F9,
    0px 0px 16px 4px rgba(242,21,249,0.75),
    0px 0px 24px 10px rgba(172,56,249,0.5);
}
.card.glowTheme h1 {
    font-size: calc(2vw + 2vh);
}

.card.glowTheme .link {
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    min-width: 25%;
    max-width: 50%;
    height: fit-content;
    min-height: 5%;
    padding: 10px;
    margin: 15px 0;
    overflow: clip;
    color: white;
    background-color: rgba(150,150,150,0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    box-shadow: inset 0px 0px 4px 0px #0093a1,
    inset 0px 0px 4px 1px rgba(118, 0, 122, 0.75),
    inset 0px 0px 3px 2px rgba(33, 0, 55, 0.5),
    0px 0px 4px 0px #0093a1,
    0px 0px 4px 1px rgba(118, 0, 122, 0.75),
    0px 0px 3px 2px rgba(33, 0, 55, 0.5);
}
.card.glowTheme .link:hover {
    transition: all 0.15s ease;
    box-shadow: inset 0px 0px 8px 0px #0093a1,
    inset 0px 0px 8px 2px rgba(118, 0, 122, 0.75),
    inset 0px 0px 6px 3px rgba(33, 0, 55, 0.5),
    0px 0px 8px 0px #00b3c4,
    0px 0px 8px 2px rgba(199, 0, 206, 0.75),
    0px 0px 6px 3px rgba(33, 0, 55, 0.5);
}