* {
    margin: 0;
    padding: 0;
}
body {
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-position: center;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    font-family: "Balsamiq Sans";
    flex-direction: column;
    align-items: center;
    text-shadow: 1px 3px 10px #00000065;
}
div {
    max-width: 680px;
    padding: 10px;
}
.me {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.me > h2 {
    margin-bottom: 10px;
}
.spoiler, .spoiler > * { transition: filter 0.5s; }
.spoiler:not(:hover) { filter: blur(5px); }
.swipe {
    position: relative;
    height: 3rem;
    font-size: 1.2rem;
    font-family: "Balsamiq Sans", cursive;
    overflow: hidden;
}
.swipe span:nth-child(1) { animation-delay: 0s; }
.swipe span:nth-child(2) { animation-delay: 2s; }
.swipe span:nth-child(3) { animation-delay: 4s; }
@keyframes fadeText {
    0% { opacity: 0; transform: translateY(10px); }
    5% { opacity: 1; transform: translateY(0); }
    28% { opacity: 1; transform: translateY(0); }
    33% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 0; transform: translateY(-10px); }
}
.avatar {
    width: 100px;
    border-radius: 50px;
    margin-top: 30px;
    margin-bottom: 10px;
}
.separator {
    margin: 15px;
    font-family: "Flow Circular";
}
a {
    color: white;
}
.telegram > a, .steam > a, .mail > a, .telegram > span, .discord > span {
    margin-left: 5px;
}
.telegram, .steam, .discord {
    padding: 0;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}
.mail {
    padding: 0;
    display: flex;
    align-items: center;
}
li {
    list-style-type: none;
}