
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Montserrat:wght@400;600&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #000000;
    color: #ffffff;
}

.hero {
    min-height: 100vh;
    background: url('../images/background.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo {
    max-width: 280px;
    margin-bottom: 60px;
    margin-top: 250px;
    filter: invert(1) brightness(1.2);
}

.circle {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    /*background: rgba(0,0,0,0.75);*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

nav {
    margin-top: 40px;
}

nav a {
    color: #ffffff;
    text-decoration: underline;
    margin: 0 20px;
    font-size: 18px;
}

.content {
    max-width: 900px;
    margin: 80px auto;
    padding: 30px;
    font-size: 18px;
    line-height: 1.7;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
}

a {
    color: #ffffff;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
   
    .circle {
        width: 240px;
        height: 240px;
        font-size: 28px;
        margin-bottom: 30px;
    }

    .logo {
        max-width: 200px;
    }

    nav {
        margin-top: 30px;
    }
    nav a {
        font-size:12px;
    }
}
