@import 'header.css';
@import 'hero.css';
@import 'footer.css';
@import 'main.css';
@import 'contact.css';
@import 'about.css';
@import 'artwork.css';
@import 'era.css';
@import 'manifestos.css';

:root {
    --background-color: whitesmoke;
    --primary-color: #000;
    --primary-trans-color: #505050;
    --secondary-color:rgba(208, 85, 85) ;
    --header-background-color: rgba(0, 0, 0, 0.70);
    --white-space: 300px;
    --foreground-color: #fff;
    --foreground-pale-color:rgba(0, 0, 0, 0.10) ;
}


@media screen and (max-width: 1024px) {
    :root {
        --white-space: 50px;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --white-space: 30px;
    }
}

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

body {
    background-color: var(--background-color);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;

}

body.no-scroll {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    letter-spacing: 2px;
}

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

main{
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 30px;
}


.baslik {
    color: var(--primary-trans-color);
    font-weight: 500;
    margin-bottom: 20px;
}

button {
    cursor: pointer;
}

