html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Main body */
body {
    background-color: #6793a3;
    background-size: cover;
    background-position: center;

    color: #354671;
    font-family: "Times New Roman", Times, serif;
    font-size: 20px;

    cursor: url("cursor/standard.cur"), auto;
}

/* Text */
h1,
h2,
h3,
p,
span {
    cursor: url("cursor/text.cur"), text;
}

a {
    color: aliceblue;
    text-decoration: none;
    cursor: url("cursor/hover.cur"), pointer;
}

a:hover {
    color: gold;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 80%;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;

    background: rgba(27, 64, 117, 0.75);
    border-radius: 8px;
}

button {
    font-family: inherit;
    cursor: url("cursor/hover.cur"), pointer;
}

/* Disabled items */
.disabled,
[disabled] {
    opacity: 0.5;
    cursor: url(cursor/dead.cur"), not-allowed;
}