/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212; /* Темный фон */
    color: #fff;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.image-section {
    flex: 1;
}

.image-section img {
    width: 100%;
    height: auto;
    border-top-left-radius: 15px; /* Скругляем левый верхний угол */
    border-top-right-radius: 15px; /* Скругляем правый верхний угол */
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.content-section {
    flex: 1;
}

.about-me h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff7f50; /* Цвет как в примере */
}

.about-me p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

.links {
    margin-top: 30px;
}

.links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    text-decoration: none;
    color: #ff7f50; /* Цвет как в примере */
    transition: color 0.3s ease;
}

.links a:hover {
    color: #fff;
}

/* Шрифт для тегов (Tegs, Henko) */
.tags {
    font-family: 'Courier New', Courier, monospace; /* Монспейс шрифт */
    font-size: 18px;
    color: #ff7f50;
}