* {
    margin: 0;
    padding: 0;
}
body {
    background-image: url(./images/bg.jpg);
    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 #00000090;
}
div {
    max-width: 780px;
    padding: 3px;
}
.spoiler, .spoiler > * { transition: filter 0.5s; }
.spoiler:not(:hover) { filter: blur(5px); }
.me {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
    width: 15rem;
}
.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}
.swipe {
    position: relative;
    height: 3rem;
    font-size: 2rem;
    font-family: "Balsamiq Sans", cursive;
    overflow: hidden;
}
.swipe span {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    animation: fadeText 6s infinite;
    white-space: nowrap;
}
.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); }
}
.links {
    padding-top: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.links a {
    min-width: 280px;
    padding: 15px;
    margin-bottom: 20px;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    max-width: 780px;
    background-color: #00000070;
    backdrop-filter: blur(5px);
    transition: box-shadow .2s ease-in-out;
    box-shadow: 0px 0px 10px  #e44dff30;
}
.links a:hover {
    box-shadow: 0px 0px 10px  #e44dff70;
}
