html {
    font-size: 16px; /* Base font size */
}

body {
    background-color: #CCEECC;
    margin: 0 5%;
}

h1 {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
	font-size: 4rem;
}

h2 {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
	font-size: 2.5rem;
}

h3 {
    text-align: justify;
	font-size: 1.8rem;
	font-weight: normal;
}

h4 {
    text-align: center;
	font-size: 1.5rem;
}

h5 {
	font-size: 1.2rem;
    display: inline;
}

h6 {
	font-size: 0.8rem;
    display: inline;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    height: auto;
 }
 
table {
    width: 100%;
}

td {
    width: 33%;
}

.disabled {
    color: gray;	
}

p {
    text-indent: 1.75rem;
}
  
a {
    color: #0000FF; 
}

.break-line::after {
    content: "";
    display: none;
}
        
/* Nav Bar */
.navbar {
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.navbar a {
    float: left;
    font-size: 1rem;
    color: blue;
	font-weight: bold;
    text-align: center;
    padding: 0.3rem 0.6rem;
    text-decoration: none;
/* border-style: solid; */
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 1rem;    
    border: none;
    outline: none;
    color: blue;
	font-weight: bold;
    padding: 0.3rem 0.6rem;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #ffbf00;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #bfff00;
    min-width: 160px;
    box-shadow: 0px 0.5rem 1rem 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
    text-align: left;
}

.navbar .dropdown-content a {
  font-size: 0.75rem !important;
}

.dropdown-content a:hover {
    background-color: #00FF00;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-box {
    border: 0.125rem solid blue;
    padding: 0.3rem;
    border-radius: 0.3rem;
}

#dragon {
    height: auto;
    display: block;
    margin: 0 auto; /* Centering the image horizontally */
}

.small td {
    font-size: 0.5rem;
}

@media (max-width: 600px) {
    html {
        font-size: 12px;
    }
    .button {
        font-size: 0.8rem;
        padding: 0.1rem 0rem;
    }
    select {
        font-size: 0.8rem;
        width: 8rem; /* Adjust width as needed */
    }
    h1 {
        font-size: 3rem;
    } 
    h2 {
        font-size: 2rem;
    }  
    .break-line::after {
        display: block; /* Forces line break on mobile devices */
    }
}
