@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

@font-face {
    font-family: 'Audio Nugget';
    src: url('AudioNugget.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background-image: url(https://f2.toyhou.se/file/f2-toyhou-se/images/23294786_NIBVwqaGuvRZSjx.png);
    background-color: black;
}

.main {
    background-color: white;
    border-radius: 5px;
    margin: 0px 400px 0px 400px;
    padding: 10px 50px 10px;
    box-shadow: 5px 5px 10px #ff3399;
}

.inside {
    text-align: center;
}

p {
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    font-style: normal;
}

h1 {
    font-family: 'Audio Nugget';
    animation: color 5s infinite;
}
@keyframes color {
    0% { color: #ff3399; }
    35% { color: #a033ff; }
    70% { color: #1c2bff; }
    100% { color: #ff3399; }
}

.char {
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    padding: 7px;
    margin: 0px 10px 0px;
    width: 200px;
    height: 200px;
    transition: 0.5s;
}
.char:hover {
    transform: scale(1.1);
    z-index: 2;
    background-image: linear-gradient(#ff3399,#a033ff,#1c2bff);
}
.ava {
    width: 200px;
    height: 200px;
    object-fit: cover;
}
h3 {
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    font-style: normal; 
    display: inline;
}