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

body{
    font-family: Arial, sans-serif;
    color:white;

    background:
        linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.40)),
        url("background.jpg");

    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: black;
}

header{
    text-align:center;
    padding:40px 20px;
    background:rgba(0,0,0,0.30);
}

header img{
    max-width:120px;
    width:100%;
    height:auto;
    margin-bottom:10px;
}

nav{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    padding:15px;
    background:rgba(0,0,0,0.45);
}

nav a{
    color:#e0bd73;
    text-decoration:none;
    font-weight:bold;
}

main{
    max-width:1000px;
    margin:40px auto;
    padding:35px;
    background:rgba(0,0,0,0.40);
    border-radius:14px;
}

footer{
    text-align:center;
    padding:20px;
    background:rgba(0,0,0,0.45);
    color:#ccc;
    margin-top:40px;
}
