html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

#timer {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}

.circle-letter {
    display: inline-block;
    width: 40px; /* Set the width and height to create a circle */
    height: 40px;
    border-radius: 50%; /* Make it a circle */
    background-color: #f00; /* Set the background color (you can change it) */
    color: #fff; /* Set the text color */
    text-align: center;
    /*font-size: 24px;  Adjust the font size as needed */
    line-height: 40px; /* Center the text vertically */
}

.circle-letter-transparent {
    display: inline-block;
    width: 30px; /* Set the width and height to create a circle */
    height: 30px;
    border: 1px solid #000; /* Thin black border to create a circle */
    border-radius: 50%; /* Make it a circle */
    background-color: transparent; /* Transparent background */
    color: #000; /* Black text color */
    text-align: center;
    font-size: 18px; /* Adjust the font size as needed */
    line-height: 28px; /* Center the text vertically */
}

.sr-readonly {
    font-size: 1.1rem;
    font-weight: bold;
    color:#ff006e;
}

.sri-description {
    font-size: 1.2rem;
    font-weight: bold;
    margin-left: 8px;
}


.menu-container {
    margin: auto;
    width: 800px;
    height: 100px;
    display: grid;
    grid-template-columns: 1fr 3fr 3fr 1fr;
    grid-gap: 50px;
    justify-items: stretch;
    align-items: start;
}
