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

body {
    background: #fff;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.splash-container {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.splash-image {
    width: 100%;
    flex: 1;
    border: none;
    display: block;
}

.link-bar {
    width: 100%;
    padding: 0.75rem 0;
    display: flex;
    justify-content: flex-end;
}

.enter-link {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #000;
    text-decoration: none;
}

.enter-link:hover { color: #5A8A3C; }
