* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;  
    background-color: #000;
    color: #fff;
    font-family: "Times New Roman", Times, serif;
    text-shadow: 5px 10px 10px rgb(255 255 255 / 15%);
}

header {
    border-bottom: white solid 2px;
    margin-bottom: 48px;
}

h1 {
    text-align: center;
    width: 100%;
    border-bottom: white solid 1px;
    margin-bottom: 5px;
    font-size: 52px;
}

footer {
    margin-top: auto;
    padding: 16px 16px 8px;
    text-align: center;
}

p footer {
    font-size: 16px;
}

a {
    color: #fff;
    text-decoration: none;
}