
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: white;
    text-align: center;
}

.hero {
    height: 85vh;
    background: url('hero.jpg') center/cover no-repeat;
    position: relative;
}

.links {
    margin: 35px auto;
    width: 82%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    text-decoration: none;
    color: white;
    border: 1px solid #C3A6A0;
    padding: 14px;
    border-radius: 6px;
    font-size: 1.15rem;
    font-family: Georgia, serif;
    transition: 0.25s;
    background-color: rgba(0,0,0,0.10);
}

.btn:hover {
    background-color: #C3A6A0;
    color: black;
}
