body {
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    font-family: 'Fira Code', monospace;
    overflow: hidden;
}

.main-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform-origin: center center;
}

.top-row {
    display: flex;
    gap: 10px;
}

.bottom-row {
    display: flex;
    gap: 10px;
}

.avatar {
    width: 200px;
    height: 200px;
    border: 2px solid white;
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: 0 0 8px 2px rgb(255, 255, 255);
}

.banner {
    width: 1000px;
    height: 200px;
    border: 2px solid white;
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: 0 0 8px 2px rgb(255, 255, 255);
}

.social-links {
    padding-top: 20px;
    height: 480px;
    width: 200px;
    border: 2px solid white;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-shadow: 0 0 8px 2px rgb(255, 255, 255);
}

.social-links a {
    color: white;
    text-decoration: none;
}

.social-links a:hover {
    animation: textFlicker 0.2s infinite;
}

.link {
    margin-top: 5px;
    margin-left: 20px;
}

.right-side {
    width: 1000px;
    height: 500px;
    border: 2px solid white;
    flex-shrink: 0;
    box-shadow: 0 0 8px 2px rgb(255, 255, 255);
}

@media (max-width: 1300px) {
    .main-container {
        transform: scale(0.85);
    }
}

@media (max-width: 1100px) {
    .main-container {
        transform: scale(0.7);
    }
}

@media (max-width: 900px) {
    .main-container {
        transform: scale(0.6);
    }
}

@media (max-width: 768px) {
    .main-container {
        transform: scale(0.5);
    }
}

@media (max-width: 640px) {
    .main-container {
        transform: scale(0.4);
    }
}

@media (max-width: 500px) {
    .main-container {
        transform: scale(0.35);
    }
}

@media (max-width: 400px) {
    .main-container {
        transform: scale(0.3);
    }
}

@keyframes textFlicker {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    40% {
        opacity: 0.8;
    }
    60% {
        opacity: 0.4;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        opacity: 0.4;
    }
}