.road-rage-regular {
  font-family: "Road Rage", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 150px;
  margin-bottom: 0;
}

body
{
    background-color: var(--defcol);
    background-image: url("forestmountain.png");
    background-size: cover;
    
    overflow: hidden;
    margin: auto;
}

ul
{
    list-style-type: square;
}

.cycle
{    
    height: 50px;
    width: 50px;
    
    position: absolute;
    top: 50px;
    right: 50px;
    
    background-color: var(--defcol);
}

.wrapper
{
    margin: auto auto auto auto;
    
    height: 750px;
    width: 1100px;
    
    text-align: center;    
}

header
{
    margin-top: 5%;
    
    color: var(--title);
    font-size: 85px;
    font-family: cursive;
    
    text-align: center;
        
    margin-bottom: 0;
    padding: 0;
    
    transform: rotate(-2deg);
}

.container 
{
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
                        
    height: 100%;
    width: 100% - 10px;
        
    display: flex;
    flex-direction: row;
    
    overflow: hidden;
}

.image
{
    margin: auto;
    margin-bottom: 0;
    text-align: center;
    display: inline-flexbox;
    
    font-size: 15px;
    color: grey;
    
    height: 100%;
    width: 370px;
    
    transition-duration: 0.2s;
}

.image:hover
{
    transform: scale(1.2);
}

.caption 
{
    opacity: 0.4;
}

@media screen and (max-width: 1000px)
{
    body
    {
        background-size: 300%;
        background-position: center;
    }
    
    .container
    {
        flex-direction: column;
    }
    
    header
    {
        font-size: 20px;
    }
    
    .wrapper
    {
        width: 100%;
    }
    
    .cycle
    {
        top: 0px;
        right: 0px;
    }
    
    .menu
    {
        height: 100px;
        overflow: scroll;
        
        box-sizing: content-box;
    }
    
    .menu.clock
    {
        display: none;
    }
}

.main
{
    flex: 1; 
    
    background-color: white;  
    
    border-style: groove;
    border-color: var(--borders);
    border-width: 5px;
    color: var(--deftext);
    
    text-align: left;
    padding: 15px;
    font-size: 20px;
    
    overflow-y: auto;
}

p {
    margin: 0;
}

.menu
{
    flex: 0.18;
    margin-right: 10px;
    
    display: flex;
    flex-direction: column;
}

.sitenav
{
    border-color: var(--borders);
    background-color: var(--boxfill);
    color: var(--deftext);
    
    font-weight: bold;
    font-size: 1.1em;
    line-height: 45px;
    
    margin-bottom: 5px;    
    
    height: 55px;
}

.favlego
{
    transform: rotate(-3deg);
    transition-duration: 0.07s;
}

.favlego:hover
{
    transform: scale(1.12);
}

.numbered
{
    list-style-type: decimal;
}

.centered
{
    text-align: center;
}

.clock
{
    border-color: var(--borders);
    background-color: var(--boxfill);
    color: var(--deftext);
    
    border-width: 5px;
    border-style: ridge;
    
    display: inherit;
    flex: 1;
    
    width: 100%;
}

[id] 
{
    display: none;
}

[id]:target
{
    display: block;
}