body {
    font-family: "Fira Code", monospace;
    background-color: black;
    color: #33ff00;
    overflow-x: hidden;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 100vh;
    width: 100vw;
}

.bg {
    height: 100vh;
    width: 100vw;
    z-index: -1;
    filter: blur(50px);
    position: fixed;
    background-image: url('assets/bg.jpg');
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.avatar {
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 5%;
    margin: 10px;
}

.blink-text {
    animation: blink 1.25s infinite alternate;
    padding-right: 12px;
    border-right: 8px solid;
    border-radius: 0;
}

h1 {
    font-size: 2.5rem;
    margin-top: 1rem;
}

p {
    margin-top: 0.5rem;
}

.social-item {
    margin-top: 1rem;
    font-size: 2.5rem;
    text-decoration: none;
    color: greenyellow;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@keyframes bluring {
    0% {
        filter: blur(1px);
    }
    50% {
        filter: blur(2.1px);
    }
    100% {
        filter: blur(1px);
    }
}