
p {
    /*letter-spacing: 0.5em;*/
    /*word-spacing: 1em;*/
    position: relative;
    top: 40px;
    font-weight: normal;
    font-style: normal;
    line-height: 1.5;
    text-align: left;
    padding: 30px;
}

#enterbutton {
    background-color: none;
    
    
    list-style-type: none;
    position: relative;
    bottom: -30px;
    
    height: 43px;
    width: 198px;
   
   
    margin: auto;
    padding: 0px;
}

ul.enterbutton {
    position: relative;
    top: 0px;
    list-style-type: none;
    display: flex; /* Use flexbox for vertical alignment */
    flex-direction: column; /* Stack items vertically */
    height: 51px;
    width: 198px;
    padding: 0px;
    margin: 0px;
    /*line-height: 43px;*/
    text-align: center;
    background-color: transparent;
    /*display:inline;*/

}

ul.enterbutton>li {
   
    position: relative;
    top: 0px;
    
}

.enterbutton li a {
    background-image: none;
    background: solid;
    
    box-sizing: border-box; /*Makes element size inclusive of all border and padding*/
    display: block; /*Sets background to element size (instead of just text)*/
    background-color: var(--Button_Default);
    height: 43px;
    width: 198px;
    
    margin-top: 0px;
    margin-right: 8px;
    margin-bottom: 8px;
    margin-left: 0px;
    
    /*Border radius order: top-left, top-right, bottom-right, bottom-left */
    border-radius: 10px 10px 10px 10px;  
    
    color: var(--Background_Dark);
    font-family: var(--nav_font_fam);
    font-size: 18pt;
    font-weight: normal;
    text-decoration: none;
    line-height: 1.5;
    
    padding-top: 4px; /*font is not centered, fixes offset
		/*Link underline*/
		/*background: url(/11-resources/02-images/UnderlineGraphic.png) bottom repeat-x;*/

    cursor: url(/11-resources/02-images/Cursor_Cl.png), auto;
    
}

.enterbutton li a:visited {
    background-color: var(--Button_Default);
    color: var(--Background_Dark);
}

.enterbutton li a:hover {
    background-color: var(--Button_Hover);
    
}

.enterbutton li a:active {
    font-style: italic;
}