body {
    font-family: 'Krub', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #232523;
    color: #E0E0E0;
}

.container {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    background: #0F100F;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 20px 20px 60px #0a0b0a, 10px -10px 10px #141514;
    overflow: hidden;
}

li{
    padding: 10px;
}

.left,
.right {
    flex: 1;
    padding: 20px;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left h1 {
    margin-bottom: 20px;
    color: #E0E0E0;
}

.left p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #E0E0E0;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0F100F;
    box-shadow: 10px 10px 20px #0a0b0a, -10px -10px 20px #141514;
    color: #E0E0E0;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-link:hover {
    box-shadow: inset 10px 10px 20px #0a0b0a, inset -10px -10px 20px #141514;
}

.right img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 20px 20px 60px #0a0b0a, -20px -20px 60px #141514;
}