/* Basic reset and typography */
body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #ffffff;
    color: #fffcfc;
    margin: 0;
    padding: 20px;
    display: block;
    justify-content: center;
    align-items: start;
    min-height: 200px;
    position: relative;
}

/* Main container for centering content */
.container {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    height: 200px;
}

/* Heading style */
h1 {
    font-size: 3rem;
    color: #4b6382;
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* Grid container for buttons */
.grid-container {
    display: grid;
    grid-template-columns: 200px, 200px;
    gap: 20px;
    justify-content: space-evenly;
    
}

/* Button styles with icon */
.button {
    background-color: #cdd5d8;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    width: 100%;
    padding: 20px;
}

/* Button styles with text only */
.button-text-only {
    background-color: #cdd5d8;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    width: 100%;
    padding: 20px;
   font-size: 20px;
   text-align: start;
}

/* Hover and active effects for buttons */
.button:hover, .button-text-only:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.button:active, .button-text-only:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Link inside button */
.button a, .button-text-only a {
    text-decoration: none;
    color: #4b6382;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    font-weight: bold;
}

/* Image inside button */
.button img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Text inside button with icon */
.button p {
    font-size: 20px;
    font-weight:bold;
    color: #555;
    margin: 0;
    flex-grow: 1;
}

/* Main menu link style */
.main-menu-link {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 10;
}

.main-menu-link img {
    width: 200px;
    height: 120PX;
    transition: transform 0.2s ease;
}

.main-menu-link a:hover img {
    transform: scale(1.05);
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
}


 .btn-fixed-return {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 8px 15px;
            border: 3px solid #4b6382;
            border-radius: 5px;
            color: #4b6382;
            background-color: #fff;
            font-weight: bold;
            font-size: 16px;
            transition: background-color 0.3s, color 0.3s, transform 0.3s;
            white-space: nowrap;
            z-index: 1000;
            text-decoration: none;
        }
        
        .btn-fixed-return:hover {
            background-color: #4b6382;
            color: #fff;
            transform: scale(1.05);
        }