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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #000000;
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.anarchy-symbol {
    -webkit-filter: invert(100%); /* safari 6.0 - 9.0 */
    filter: invert(100%);
    width: 100px;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.section {
    padding: 4rem 0;
    border-bottom: 2px solid #000000;
}

.section:last-of-type {
    border-bottom: none;
}

.section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section p {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    max-width: 800px;
}

#contact a {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #000000;
    transition: all 0.3s ease;
}

#contact a:hover {
    background-color: #000000;
    color: #ffffff;
    padding: 2px 4px;
}

footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .anarchy-symbol {
        font-size: 2.5rem;
    }
    
    .logo {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    header h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .anarchy-symbol {
        font-size: 2rem;
    }
}

.light {
    color: grey;
    size: 14px;
}

.big {
    font-size: 32px;
}