:root{
    --joeGreen: #01714A;
    --white: #ffffff;
    --joeFont: 'Raleway', sans-serif;
    --normalFont: 'Roboto', sans-serif;
    --headingFont: 'Raleway', sans-serif;
    --buttonColor: #e6a513;
    --buttonHover: #efb83d;
    --sectionHeight: calc(100vh - 90px);
    --silverColor: #c0c0c0;
    --black:#000000;
    --textSize:20px;
    --arrowColor:white;
}
.gradient-text {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(90deg, #1C71E6, #FE6A12, #FDC903, #2FA628);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
p{
    font-weight: 500;
    font-size: 24px;
    text-align: center;
}
body{
    margin: 0;
    position: relative;
    background-color: white;
    font-size: var(--textSize);
}

button{
    height:40px;
    border-radius: 20px;
    min-width: 100px;
    color:white;
    font-weight: 900;
}

button:disabled{
    cursor: auto;
    color:grey;
}
.flexRow{
    display:flex;
    flex-direction: row;
}
.flexFill{
    flex:1;
}
.flexColumn{
    display:flex;
    flex-direction: column;
}
.flexCenter{
    justify-content: center;
}

.flexRowReverse{
    display:flex;
    flex-direction: row-reverse;
}

.patrick-hand-regular {
    font-family: "Patrick Hand", cursive;
    font-weight: 400;
    font-style: normal;
  }
  .patrick-hand-bold {
    font-family: "Patrick Hand", cursive;
    font-weight: 900;
    font-style: normal;
  }
  

  .handwritten {
    font-size: 24px;
    font-family: "Patrick Hand", cursive;
}


.container {
    max-width: 600px;
    margin: 50px auto;

    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

.container h1 {
    text-align: center;
    margin-bottom: 20px;
}

