body {
    background-color: #EDE9E9;
    color: black;
    margin: 0;
    overflow-x: hidden;
    overflow-y: hidden;
}

.navbar {
    background-color: #612940;
    color: #E66C6C;
    width: 100%;
    height: 15vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    position: relative;
    top: 0;
    z-index: 10;
    }

.navbar-text {
    font-size: 3.5em;
    margin-right: auto;
    padding-left: 0;
}

.logo {
    height: 150%;
    width: auto;
    position: absolute;
    left: 49%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .navbar {
        justify-content: space-between;
    }

    .logo {
        position: static;
        transform: none;
        margin-left: auto;
        height: 125%;
    }

    .navbar-text {
        padding-left: 5%;
    }
}

.sidebar {
    background-color: #9D6381;
    width: 5vw;
    height: 100%;
    position: sticky;
    top: 0;
    transition: width 0.3s ease-in-out;
    overflow: hidden;
    z-index: 1;
}

.sidebar-expanded {
    width: 17.5vw;
}

.arrow {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 40%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease-in-out;
    z-index: 100;
}

.sidebar-expanded .arrow {
    transform: translateY(-50%) rotate(180deg);
}

.sidebar-buttons {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    padding: 1em;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 75%;
    transition-delay: -500ms;
}

.sidebar-expanded .sidebar-buttons {
    opacity: 1;
    display: flex;
    transition-delay: 0.3s;
}

.sb-btn {
    font-size: 1.5em;
    font-family: Dubai, serif;
    border: 2px solid transparent;
    margin: 1em 1em 0 0;
    cursor: pointer;
    border-radius: 10px;
    width: 10vw;
    transition: border-color 0.1s ease-in-out;
}

.sb-btn:hover {
    border-color: black;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.74);
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.74);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.74);
}

/* Button container styles */
.button-container {
    display: flex;

    justify-content: center;

    justify-content:center;

    gap: 50px;
    margin-top: 50px;
}

/* Large button styles */
.btn {
    font-size: 1.5rem;
    padding: 20px;
    width: 400px;
    height: 750px;
    background-color: #E66C6C;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligns items to the start (top) of the container */
    align-items: center;

    background-color: #E66C6C; /* Matches the color scheme */
    color: white;
    justify-content:flex-start ;
    display: flex;
    align-items: center;
    flex-direction: column;

    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease;

    position: relative;
    overflow: hidden;
    font-family: 'Roundelay';
}

/* Text styles for button */
.btn span {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 20px; /* Add some space at the top */
    margin-bottom: 20px; /* Add space below the text */
    font-family: 'Roundelay';
}

/* Styles for the SVG icons in large buttons */
.btn img {
    width: 200px; /* Increased size */
    height: 200px; /* Increased size */
    margin: auto; /* This centers the icon vertically in the remaining space */

}

/* Hover effect */
.btn:hover {

    background-color: #612940;
    transform: scale(1.05);
}

.icon-button-container {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.icon-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.icon-button:hover {
    background-color: #e0e0e0;
}

.icon-button svg {
    fill: currentColor;
}

.icon-button img {
    width: 24px;
    height: 24px;
    /* Add other styles as needed */
}

.lrge-button {
    /* Keep your existing button styles */
    display: flex;
    align-items: center;
    gap: 8px;
}

.lrge-button svg {
    fill: currentColor;
    width: 24px;
    height: 24px;
}

/* ... existing styles ... */


/* First, declare the font */
@font-face {
    font-family: 'Roundelay';
    src: url('../media/Roundelay-Regular-BF66ece18989632.otf') format('otf');
    font-weight: normal;
    font-style: normal;
}

/* Apply the font to all buttons with the 'btn' class */
.btn {
    font-family: '
    /* ... existing button styles ... */
}

    background-color: #612940; /* Darker shade to match your navbar */
    transform: scale(1.05); /* Slight zoom on hover */
}





