/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.banner {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1;
    color: black;
    display: flex;
    padding: 30px;
    padding-left: 40px;
    opacity: 1;
}

.site-branding {
    position: absolute;
    top: 15px;
    font-size: 1rem;
    font-weight: bold;
    font-family: "dm-sans", Arial, Helvetica, sans-serif;
    text-transform: lowercase;
}




.body {
    margin: 0px;
    display: flex;
    color: black;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex; /* Inline display of list items */
    justify-content: center; /* Align items horizontally in the middle */
}

li {
    padding: 30px;
    font-family: "dm-sans", Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
}  

button {
    all: unset; /* Remove all browser-specific button styling */
    padding: 6px;
    background-color: white;
    cursor: pointer;
}

.branding {
    text-decoration: none;
    color: #303030;
}

.branding:visited {
    color: #303030; /* Set visited link color to black */
}

.branding:hover {
    color: rgb(135, 66, 175);
    text-shadow: 0 0 5px #0080ff, 0 0 10px #00ff00, 0 0 15px #00ff00;
    text-decoration: none;
}

.button {
    text-decoration: none;
    color: #303030;
}

.button:visited {
    color: #303030; /* Set visited link color to black */
}

.button:hover {
    color: rgb(135, 66, 175);
    text-shadow: 0 0 5px #0080ff, 0 0 10px #00ff00, 0 0 15px #00ff00;
    text-decoration: none;
}



.contact-footer {
    display: flex;
    justify-content: center; /* Center the content */
    align-items: center; /* Align vertically in the middle */
    height: 40px; /* Set a specific height if needed */
    width: 100%; 
    position: fixed; /* Fixed at the bottom */
    margin: 0;
    bottom: 0; /* Align to the bottom */
    left: 0; /* Align to the left */
    background-color: white;
    opacity: 0.5;
    z-index: 1000; /* Ensure it stays above other content */
}

.contact {
    padding: 6px;
    border: none;
    background-color: white;
    font-weight: bold;
    font-family: "dm-sans", Arial, Helvetica, sans-serif;
    color: #303030; /* Explicitly set text color */
    cursor: pointer;
    outline: none; /* Remove default outline */
}

.contact:visited,
.contact:focus,
.contact:active {
    color: #303030; /* Ensure consistent color across states */
    outline: none;
}

.contact:hover {
    color: rgb(135, 66, 175);
    text-shadow: 0 0 5px #0080ff, 0 0 10px #00ff00, 0 0 15px #00ff00;
}

 @media (min-width: 1367px) {
    html {
        font-size: 12px; 
    }
    .site-branding, .contact {
        font-size: 1.25rem;  
    }

    .button {
        font-size: 3rem;
    }



}

@media (max-width: 1366px) {
    html {
        font-size: 13px; 
    }
    .site-branding, .contact {
        font-size: 1.25rem;  
    }

    
    .button {
        font-size: 3rem;
    }

   

}

/* Tablets (Portrait & Landscape) */
@media (max-width: 1024px) {
    html {
        font-size: 14px; 
    }
    .site-branding, .contact {
        font-size: 1.5rem; 
    }

    .button {
        font-size: 3rem;
        word-break: none;
        word-wrap: none;
    }


}

/* Mobile Phones (Landscape) and small tablets */
@media (max-width: 768px) {
    html {
        font-size: 16px; 
    }

    .site-branding {
        font-size: 1.5rem; 
    }

    .navigation {
        display: flex;
        flex-direction: column;
        align-items: center;
        
      }

    .button {
        font-size: 3rem;
    }

    .contact {
        font-size: 1.5rem;
        color: #303030; /* Explicitly set color */
    }
    .contact:active,
    .contact:focus {
        color: #303030; /* Ensure no color change on focus */
        outline: none;
    }


}

/* Mobile Phones (Portrait) */
@media (max-width: 480px) {
    html {
        font-size: 18px; 
    }

    .site-branding, .contact {
        font-size: 1.7rem; 
    }

    
}