html, body {
  height: 100%;
  margin: 0;
  overflow: auto;
}

body {
    color: #0d6d00;
    font-family: "ms ui gothic";
    letter-spacing: 1.1px;
    background-image: url('img/ppshorebreak.gif');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: url(img/tomie1.png), auto !important;
}

a:hover, 
button:hover {
 cursor: url(img/tomie2.png), auto;
}
.bordered-div {
    position:relative;
    width: 1100px;
    height: 930px;
    background-color: black;
    border: 5px solid white;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.fade-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1;
    animation: fadeOutBlack 4s forwards;
    animation-timing-function: ease-out;
}

@keyframes fadeOutBlack {
    from {
        opacity: 1; 
        pointer-events: none;
    }
    to {
        opacity: 0;
        pointer-events: none;
    }
}
