* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: monospace;
    font-size: 14px;
    background-color: #272E33;
    background: url("/static/img/fog_forest_1.png");
    background-size: cover;
    backdrop-filter: blur(100px);
    color: #D3C6AA;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

a {
    text-decoration: none;
    color: #D3C6AA;
}

.container {
    max-width: 800px;
    width: 100%;
    z-index: 1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #272E33;
    backdrop-filter: blur(10px);
    /* border: 5px solid #D3C6AA; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nickname {
    font-size: 2.5rem;
    font-weight: 700;
    color: #A7C080;
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #D3C6AA;
    text-decoration: none;
}

.contact-item:hover {}

section {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #272E33;
    backdrop-filter: blur(10px);
    /* border: 5px solid #D3C6AA; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #A7C080;
    border-bottom: 2px solid #A7C080;
    padding-bottom: 0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: #272E33;

    padding: 1.5rem;
    /* border: 5px solid #D3C6AA; */
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #A7C080;
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #A7C080;
}

.skills-category {
    margin-bottom: 1.5rem;
}

.skills-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #A7C080;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-tag {
    background-color: #272E33;
    padding: 0.5rem 1rem;
    border: 3px solid #A7C080;
    font-size: 0.9rem;
    color: #D3C6AA;
    transition: background-color 0.3s;
}

.skill-tag:hover {
    background-color: #A7C080;
    color: #272E33;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
