*{
    font-family: "Nunito", sans-serif;
}

body {
    background-color: #0a0a0a;
    color:white;
    height: 100vh;
    overflow: hidden;
}

.content {
    height: 100vh;
}

.container {
    animation: 1.5s open_page;

    position: absolute;
    margin: auto;
    width: 50%;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    z-index: 10;
}

@keyframes open_page {
    0% {
        opacity: 0;
        top: 55%;
    }

    100% {
        opacity: 1;
        top: 50%;
    }
}

.title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.title h1 {
    font-optical-sizing: auto;
    font-weight: 16;
    font-style: normal;
}

.title img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 50px;
}

.link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.line {
    background-color: #141414;
    width: 150px;
    height: 1px;
}

.osu-link {
    text-align: left;
    position: absolute;

    margin-top: 150px;
}

.osu-link img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.osu-link a {
    text-decoration: none;
    color: white;
    vertical-align: middle;
    padding: 2px;
    font-weight: 200;
    font-style: normal;
}

.github-link {
    text-align: center;
    position: absolute;

    margin-top: 100px;
}

.github-link img {
    width: 26px;
    height: 26px;
    vertical-align: middle;
}

.github-link a {
    text-decoration: none;
    color: white;
    vertical-align: middle;
    padding: 2px;

    font-weight: 200;
    font-style: normal;
}

.github-link a:hover {
    color: #c7c7c7;
}

.osu-link a:hover {
    color:#c7c7c7;
}

p {
    margin:0;
}

.quote {
    text-align: center;
    margin-top: 20px;
}

.fall-element {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    width: 5px;
    height: 5px;

    will-change: transform;
}


.bg {
    background-color: rgba(255, 255, 255, 0.03);
    width: 250px;
    height: 230px;
    padding: 10px;
    left: 50%;
    position: absolute;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    will-change: transform;
    transition: all 0.2s ease;
    transform: translate(-50%, -50%) scale(1);
}

.bg:hover {
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
}