/* General Styles */

@font-face {
              font-family: 'AbyssincaSil';
              src: url(../fonts/AbyssinicaSil.ttf) format('truetype');
            }
#home {
    font-family: 'AbyssincaSil';
}

* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    background-color: #02bef7;/#04dede;//#032c38;
}

h1, h2{      /* Change font */
  font-size: 48px;                     /* Larger font size */
  font-weight: 700;                    /* Bold weight */
  color: white;                        /* White text color */
  background-color: #4CAF50;           /* Green background */
  padding: 20px;                       /* Add padding inside the <h1> */
  border-radius: 10px;                 /* Rounded corners */
  text-align: center;                  /* Center the text */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); /* Shadow for depth */
}
#thePara { /* Clean sans-serif font */
    font-size: 30px;
    color: #71518c;             /* Spacing between lines of text */
    margin: 20px auto;             /* Center-align and add margin at top and bottom */
    text-align: justify;           /* Justify the text for even spacing */
}

#theLevel { /* Clean sans-serif font */
   font-size: 40px;
    color: #9c7272;                   /* Dark grey text */
    line-height: 1.6;              /* Spacing between lines of text */
    max-width: 700px;              /* Limit the width of the paragraph */
    margin: 20px auto;             /* Center-align and add margin at top and bottom */
    text-align: justify;           /* Justify the text for even spacing */
}

#theList{
  font-size: 20px;
  color: #71518c;                   /* Dark grey text */
  line-height: 1.6;              /* Spacing between lines of text */
  max-width: 700px;              /* Limit the width of the paragraph */
  margin: 20px auto;             /* Center-align and add margin at top and bottom */
  text-align: justify;           /* Justify the text for even spacing */
}

button {
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid #89c40a;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    transform: scale(1.05);
}

button:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

button#btnFirst, button#btnOne, button#btnTwo,
button#btnMore, button#btnWord, button#btnExtra
 {
    background-color: #015066;
    color: white;  /* Better contrast */
    border-radius: 15px;
    font-size: 25px;
    width: auto;
    min-width: 150px;
    margin: 10px;
}


button#btnFullSentence, button#btnPrayerOurFather,
button#btnGeezEpistle {
    background-color: #015066;
    color: white;  /* Better contrast */
    border-radius: 15px;
    font-size: 25px;
    width: auto;
    min-width: 150px;
    margin: 10px;
}

/* Section Styling */
header {
    padding: 20px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
}

section {
    padding: 20px;
    margin: 10px;
}

#level-1, #level-2, #level-3 {
    margin-bottom: 30px;
}

/* Button Container */
.button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

input[type="color"], input[type="range"] {
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
}

input[type="range"] {
    margin-left: 10px;
}

canvas {
    background-color: black;
    border: 1px solid white;
    margin-top: 20px;
    width: 100%;
    height: 500px;
    max-width: 100%;
}

#current-letter {
    color: white;
    font-size: 24px;
    margin-top: 20px;
}

/* Full Sentence Section */

#alphas {
    margin-top: 30px;
    padding: 20px;
    background-color: #440f57;//#2a0338;
    color: orange;
    font-size: 300px;
    text-align: center;
    width: auto;
    height: flex;
    max-width: 100%;
}

#result {
    margin-top: 30px;
    padding: 20px;
    background-color: #440f57;//#2a0338;
    color: orange;
    font-size: 200px;
    text-align: center;
    width: auto;
    height: flex;
    max-width: 100%;
}

#fullSentence {
    margin-top: 30px;
    padding: 20px;
    background-color: #440f57;//#2a0338;
    color: orange;
    font-size: 120px;
    text-align: center;
    width: 100%;
    height: flex;
    max-width: 100%;
}

/* Misc Styling */
#thePara {
    color: #015066;
    font-size: 26px;
    text-align: center;
}



q {
    display: block;
    margin-top: 10px;
    font-style: italic;
    color: #444;
}


/* Specific button color styles */
#new-letter {
    background-color: #4CAF50;
    color: white;   /* Green */
}

#new-letter:hover {
    background-color: #45a049;   /* Darker green on hover */
}

#erase {
    background-color: #f44336;
    color: white;  /* Red */
}

#erase:hover {
    background-color: #e53935;   /* Darker red on hover */
}

#submit {
    background-color: #2196F3;
    color: white;   /* Blue */
}

#submit:hover {
    background-color: #1e88e5;
    color: white;   /* Darker blue on hover */
}

#eraser-toggle {
    background-color: #ff9800;
    color: white;  /* Orange */
}

#eraser-toggle:hover {
    background-color: #fb8c00;   /* Darker orange on hover */
}

#btnHome{
    background-color: #ff9800;
    color: white;  /* Orange */
}
