* {
    margin: 0;
    padding: 0;
}

html {
    font-family: "Almendra", serif;
    font-weight: 400;
    font-style: normal;

    font-size: 10px;
    cursor:no-drop;
    /*cursor: url(images/cross.png), auto;*/
}

body {
	height: 100vh;
    min-width: 300px;
    color: #eac6c6;
    text-shadow: 0 1px 1px #ff0000;
}

p {
    background-color: rgb(0 0 0 / 48%);
    font-size: 3rem;
    margin: 25px 25px 0 25px;
    hyphens: auto; 
    text-align: center;
    line-height: 4rem;
    /*
    border: 5px solid #000;
    border-radius: 5px;
    */
}

b {
    font-weight: 700;
    color: crimson;
    animation: color-change 5s infinite;
}
  
@keyframes color-change {
    0% { color: red; }
    50% { color: rgb(255, 255, 255); }
    100% { color: red; }
}

a > b {
    text-decoration: underline;
}

#hint {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(images/akiraBonFire.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

div#preload { display: none; }

@media screen and (min-width: 480px) {
    html {
       font-size: 10px; 
    }
}

@media screen and (max-width: 479px) {
    html {
       font-size: 8px; 
    }
}

.row {
    z-index: 1;
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 88em;
    /*background-color: rgba(0, 0, 0, .2);*/
}

#logoHeader {
    height: 24rem;
    background-image: url(images/club2Logo.svg);
    background-position: center;
    background-size: 18rem;
    background-repeat: no-repeat;
}

#footer {
    margin: 30px auto;
    text-align: center;
    font-size: 1.5rem;
    padding-bottom: 20px;
}

#secret {
    height: 10000px;
}