body {
    background-image: url("img/background.png");
    background-repeat: repeat;
    background-size: 181px;
    /* center content on the page */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}  

h1 {
    display: inline-block;
    background-color: white;
    border-radius: 20px;
    padding: 4px 20px 4px 20px;
    font-family: Verdana;
    font-size: 4em;
    margin-bottom: 50px;
    box-shadow:
      rgba(0,0,0,1) 0 0 0 3px,
      rgba(30,30,30,0.85) 0 0 0 6px,
      rgba(90,90,90,0.6) 0 0 0 9px,
      rgba(160,160,160,0.4) 0 0 0 12px,
      rgba(230,230,230,0.25) 0 0 0 15px,
      rgba(255,255,255,0.12) 0 0 0 18px;
}

.appbtn {
    background-color: gray;
    border-radius: 10px;
    /* ensure the border is visible — default transparent so modifiers can set color */
    border: 3px solid transparent;
    /* make button a few pixels shorter than the image */
    height: calc(var(--btn-h) - var(--btn-offset));
    padding: 0 24px;            /* keep horizontal padding, vertical handled by height */
    text-align: center;
    font-family: Helvetica Neue;
    font-weight: bold;
    font-size: 32px;
    margin: 8px 2px;
    transition: 0.3s;

    /* make all buttons the same width and keep text centered */
    width: 280px;           /* adjust to the width you want */
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.appbtn-nc {
    border-color: #0E98E4;
    background-color: white;
    color: #0E98E4;
}

.appbtn-jf {
    border-color: #A65DC3;
    background-color: white;
    color: #A65DC3;
}

.appbtn-cc {
    border-color: #34CC99;
    background-color: white;
    color: #34CC99;
}

.appbtn-nc:hover {
    background-color: #0E98E4;
    color: white;
}

.appbtn-jf:hover {
    background-color: #A65DC3;
    color: white;
}

.appbtn-cc:hover {
    background-color: #34CC99;
    color: white;
}


/* keep each row centered and align icon and button */
.divbtn {
    /* set the row button/image height once (adjust to taste) */
    --btn-h: 72px;
    --btn-offset: 10px; /* buttons will be this many pixels shorter than the image */

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto; /* don't stretch full width so each row stays centered */
    margin-bottom: 12px;
}

/* make the image match the same height */
.divbtn img {
    height: var(--btn-h);
    width: auto;
    object-fit: cover;
    border-radius: 40px;
}

a {
    text-decoration: none;
}

.farm {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 50px;
    height: auto;
    z-index: 1000;
}

.footer {
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-family: Helvetica Neue;
    font-weight: bold;
    font-size: 14px;
    color: #333333;
    background-color: white;
    border-radius: 30px;
    padding: 0px 6px 0px 6px;
}

