body, h1, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica', sans-serif;
    background: #0d0d0d;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    color: #fff;
    filter: blur(0.5px) grayscale(1) brightness(0.8) contrast(1.2);
}

header {
    text-align: center;
    margin-bottom: 50px;
}

.title {
    font-size: 36px;
    font-weight: bold;
}

.container {
    text-align: center;
    margin-bottom: 50px;
}

.profile-image {
    width: 50%;
    max-width: 400px;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.profile-image:hover {
    transform: scale(1.1);
}

.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.snowflake {
    position: absolute;
    top: -10px;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    animation: snowfall linear infinite;
}

@keyframes snowfall {
    0% {
        transform: translateY(-10px) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

.login {
    text-align: center;
}

.login-link {
    color: #F99BF9;
    text-decoration: none;
    font-size: 24px;
    font-family: 'VCR OSD Mono', monospace;
    border: 2px solid #F99BF9;
    padding: 10px 20px;
    transition: color 0.3s, background-color 0.3s;
}

.login-link:hover {
    color: #fff;
    background-color: #F99BF9;
}

.contact {
    text-align: center;
    margin-bottom: 50px;
}

.social-icons img {
    width: 20px;
    height: 20px;
    margin: 0 5px;
    border: 1px solid #fff;
    border-radius: 5px;
}

footer {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: transparent;
    font-family: 'VCR OSD Mono', monospace;
}

link[rel="icon"] {
    border-radius: 50%;
}

.typing-container {
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
}

.typing-container::after {
    content: '';
    display: inline-block;
    width: 0;
    animation: none;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange; }
}

.bios-screen {
    background: #0d0d0d;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bios-content {
    text-align: center;
}

.loading-screen {
    background: #0d0d0d;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-content {
    text-align: center;
}

.loading-logo-container {
    position: relative;
}

.loading-logo {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.illuminating-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,0,0,1) 0%, rgba(0,128,0,1) 100%);
    animation: illuminating 2s infinite alternate;
}

.loading-bar {
    width: 364px;
    height: 54px;
    margin-top:20px;

}

.loading-subtext {
    color: #D22B2B;
}
