/* Put any custom CSS styles here.  */
/* Be sure to delete the <style> tag in index.html if you want to use this stylesheet. */
body {
  margin: 0;
  font-family: "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  min-height: 100vh;
}

* {
  box-sizing: border-box;
}

.credits {
  color: #777;
  position: fixed;
  bottom: 24px;
  left: 24px;
  font-size: 11px;
  text-align: center;
}

.credits a {
  color: #000;
  font-weight: bold;
}

main {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  gap: 30px;

}

.main-section{
  /* display: grid;
  border: 1px solid red;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(1fr, 5); */
  display: flex;
  flex-direction: column;
}

section {
  display: flex;
  flex-direction: row;
  gap: 60px;
}


.small-btn{
  border-radius: 25px;
  padding: 0px 10px;
  font-size: 1rem;
  margin: 0;
}

.medium-btn{
  border-radius: 25px;
  padding: 0px 10px;
  font-size: 1.25rem;
  margin: 0;
}

.large-btn{
  border-radius: 25px;
  padding: 0px 10px;
  font-size: 1.5rem;
  margin: 0;
}

.color-gray {
  background-color: #E6E6E6;
  border: 1px solid #525252;
  color: #171717;
}

.color-red {
  background-color: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
}

.color-yellow{
  background-color: #FFFBEB;
  border: 1px solid #FDE68A;
  color: #B45309;
}

.color-green{
  background-color: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #15803D;
}

.color-blue {
  background-color: #EEF2FF;
  border: 1px solid #C7D2FE;
  color: #4338CA;
}