*{
    box-sizing: border-box;
}
html, body, h1, h2, h3, h4, h5, h6, p, a, div{
    margin:0;
    padding:0;
}
html{
    font-size: 16px;
}
p{
    font-size: 1.25rem;
}
h1{
    font-size: 1.9rem;
}
h2{
    font-size: 1.2rem;
}
h3{
    font-size: 1.05rem;
}
body{
    background: linear-gradient(5deg, moccasin, oldlace, ghostwhite);
    background-repeat: no-repeat;
    height: 100%;
}


.blockHeader{
    z-index: 1;
    position: fixed;
    left:0;
    top:0;
    width: 100%;
}
.header1{
    background: rgb(14, 4, 62);
    min-height: 35px;
}
.header2{
    margin-top: 5px;
    background: rgb(14, 4, 62);
    min-height: 10px;
}
.spacer1{
    min-height: 100px;
}


.bigTitle{
    margin: 0;
    margin-bottom: 30px;
}
.bigTitle p{
    margin-bottom: 10px;
    text-align: center;  
    font-size: 1.5rem;
    color: rgb(14, 4, 62);
}
.bigTitle h1{
    text-align: center;
    font-size: 5rem;
    font-weight: normal;
    color: rgb(14, 4, 62)
}
.blocky{
    display: grid;
    justify-content: center;
    grid-template-columns: min-content min-content min-content min-content min-content;
    gap: 5px;
}
.blocky h1:nth-child(odd){
    font-size: 4rem;
}
.smaller{
    min-width: 100px;
    min-height: 50px;
}
.smaller img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}


.pages{
    max-width: 100%;
    display: grid;
    min-height: 300px;
    grid-template-columns: 250px 250px 250px;
    justify-content: center;
}
.icons{
    justify-content: center;
    display: grid;
}
.icons >*{
    grid-column: 1;
    grid-row: 1;
}
.icons img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.clicking{
    height:100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.toPress{
    margin: auto;
    position:relative;
    justify-content: center;
    height:40px;
    width: 85px;
    border: oldlace 3px;
    background-color: rgb(14, 4, 62);
    box-shadow: 0 0 0 3px oldlace, 0 0 0 5px rgb(14, 4, 62);
    border-radius: 10px;
}
.pages h3{
    margin: auto;
}
.pages a{
    text-decoration: none;
    color: oldlace;
}


.fancy{
    display: grid;
    margin: auto;
    margin-top: 50px;
    min-height: 300px;
    max-width: 400px;
    color: rgb(0,0,0,0);
}
.fancy h2{
    font-size: 1.35rem;
    font-weight: normal;
}
.fancy p{
    text-align: end;
    margin-top: 15px;
    font-size: 1.2rem;
}
.fancy div{
    margin:0;
    padding:0;
    text-align: left;
    grid-column: 1;
    grid-row: 1;
}
.fancy div:nth-child(1) {
  animation: 32s linear infinite fancyDance;
  animation-delay: 0s;
}
.fancy div:nth-child(2) {
  animation: 32s linear infinite fancyDance;
  animation-delay: 8s;
}
.fancy div:nth-child(3) {
  animation: 32s linear infinite fancyDance;
  animation-delay: 16s;
}
.fancy div:nth-child(4) {
  animation: 32s linear infinite fancyDance;
  animation-delay: 24s;
}

@keyframes fancyDance {
    0%, 100%{
        color: rgb(0,0,0,0);
    }
    4%{
        color:goldenrod;
    }
    8%{
        color:black;
    }
    17%{
        color:maroon;
    }
    20%{
        color: rgb(0,0,0,0);
    }
}

/* Micro-Mobile support */
@media (max-width: 370px){
    .bigTitle p{
        margin-bottom: 30px;
        font-size: 1.45rem;
    }
    .bigTitle h1{
        font-size: 2.5rem;
    }
    .blocky{
    display: grid;
    justify-content: center;
    grid-template-columns: min-content min-content min-content;
    gap: 5px;
    }
    .blocky h1:nth-child(odd){
        font-size: 2rem;
    }
    .smaller{
        min-width: 60px;
        min-height: 50px;
    }

    .pages{
        grid-template-columns: 150px;
    }
    .toPress{
        height:30px;
        width: 75px;
    }
    .pages h3{
        font-size: 0.9rem;
    }

    .fancy{
        max-width: 250px;
    }
    .fancy h2{
        font-size: 1.3rem;
    }
    .fancy p{
        font-size: 1.15rem;
    }
}

/* Mobile support */
@media (min-width: 371px) and (max-width: 750px){
    .bigTitle p{
        margin-bottom: 20px;
        font-size: 1.45rem;
    }
    .bigTitle h1{
        font-size: 2.5rem;
    }
    .blocky{
    display: grid;
    justify-content: center;
    grid-template-columns: min-content min-content min-content min-content min-content;
    gap: 5px;
    }
    .blocky h1:nth-child(odd){
        font-size: 2rem;
    }
    .smaller{
        min-width: 60px;
        min-height: 50px;
    }

    .pages{
        grid-template-columns: 180px 180px;
    }
    .toPress{
        height:35px;
        width: 80px;
    }
    .pages h3{
        font-size: 1.0rem;
    }

    .fancy{
        max-width: 325px;
    }
    .fancy h2{
        font-size: 1.3rem;
    }
    .fancy p{
        font-size: 1.15rem;
    }
}
