body {
    /* background-color: transparent; */
    color: #ffffff;
    overflow: hidden;
}

header {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

header h1 {
    font-size: 20px;
    margin: 0;
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 24px;
}

nav a {
    text-decoration: underline;
    font-weight: 500;
    opacity: 0.85;
    color: red;
}

nav a:hover {
    opacity: 1;
    text-decoration: underline;
}