* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0e1117;
    color: #e6e6e6;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 24px 16px;
}

header h1 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 10px;
}

video {
    max-width: 100%;
    border-radius: 6px;
    background-color: #000;
}

.text {
    text-align: center;
    font-size: 16px;
}

a {
    color: #4ea1ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
