@font-face {
    font-family: "handwrite";
    src: url("fonts/lora/lora.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: "handwrite", sans-serif;
    background-color: #666666;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}
#indexpage {
    background-image: url('images/main-bg.png');
}
.menu {
    position: sticky;
    top: 0;
    background-color: #666666;
    display: flex;
    align-items: center;
    padding: 15px 40px;
    border-bottom: 1px solid #555;
}

.content-block {
    background-color: rgba(102, 102, 102, 0.9);
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.image-spacer {
    text-align: center;
    margin: 40px 0;
}

.promo-img {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.logo-img {
    height: 70px;
    width: auto;
    margin-right: 15px;
    display: block;
}

.menu-title {
    font-family: "handwrite";
    font-size: 36px;
    margin: 0;
    margin-right: 40px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    flex: 1;
    justify-content: space-around;
    align-items: center;
}

.menu-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #6a7c6a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    text-align: center;
    font-size: 18px;
}

.menu-btn:hover {
    background-color: #4a5d4a;
    transform: scale(1.05);
}

h4 {
    font-family: "handwrite";
    font-size: 28px;
    margin-top: 0;
    text-align: center;
    color: #cbdccb;
}

table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;

}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    border: 2px solid #829c3d;
}

th {
    background-color: hwb(0 96% 4%);
    font-weight: bold;
}


tr:hover {
    background-color: #9af4772d;
}