body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: #1a1a1a url('garayter20.jpg');
    background-size: cover;
    height: 150vh;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #ddd;
}

.header-container {
    display: flex;
    justify-content: flex-end;
    padding: 10px 40px;
    box-sizing: border-box;
}

.combined-button {
    display: inline-flex; 
    align-items: center;
    background-color: #007bff !important;
    color: white !important;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 8px;
    border: 1px solid #0056b3;
    transition: all 0.3s ease;
}

.combined-button:hover {
    background-color: #0056b3 !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.logo-in-button {
    height: 24px;
    width: auto;
    margin-right: 12px;
    display: block;
}

.button-text {
    font-weight: bold;
    white-space: nowrap;
}

.image-container {
    display: flex;          /* Enables Flexbox layout */
    justify-content: center; /* Centers content horizontally */
    align-items: center;     /* Centers content vertically */
    height: 100vh;           /* Sets container height to full viewport height */
    /* Add any other styling like background color if needed */
}

.responsive-image {
    max-width: 100%;    /* Ensures image scales down on smaller screens */
    height: auto;       /* Maintains the image's aspect ratio */
    display: block;     /* Ensures margin: auto works if used */
}
