/* styles.css */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 90%;
    max-width: 600px; /* Limits the maximum width for large screens */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    max-width: 100%; /* Ensures the logo is responsive and doesn't overflow the screen */
    height: auto;
    margin-bottom: 20px;
}

.portal-text {
    font-size: 24px; /* Default text size for mobile */
    font-weight: bold;
    text-align: center;
    margin: 20px 0; /* Ensures adequate spacing above and below the text */
    color: #FFF; /* Ensures text is visible on dark background */
}

.buttons button, .dropdown .dropbtn {
    margin: 10px;
    padding: 10px 20px;
    font-size: 14px; /* Slightly smaller font size for mobile */
    background-color: #555;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buttons button:hover, .dropdown .dropbtn:hover {
    background-color: #777;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #555;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-content a {
    color: white;
    padding: 16px 16px;
    text-decoration: none;
    display: block;
	border-collapse: separate;
}

.dropdown-content a:hover {
    background-color: #777;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #777;
}

/* Media Queries for larger screens */
@media (min-width: 600px) {
    .portal-text {
        font-size: 32px; /* Larger text for desktop */
    }
    .buttons button, .dropdown .dropbtn {
        font-size: 16px; /* Larger buttons on desktop */
    }
}
