* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: url('background.png') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    padding: 0px 0px 0px 0px;
}

.logo {
    max-width: 60%; /* Scales down to fit within the viewport */
    margin: auto;
}

.bottom-elements {
    position: absolute;
    bottom: 20px; /* Distance from the bottom of the screen */
    text-align: center;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center-align contents */
}

.texas-outline {
    max-width: 100px; /* Adjust as needed */
    margin-bottom: 40px; /* Space between Texas outline and email */
}

.email-link {
    position: absolute;
    bottom: 20px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.email-link:hover {
    text-decoration: underline;
}

.email-link {
    position: absolute;
    bottom: 20px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: normal;
}

.email-link:hover {
    text-decoration: underline;
}
/* Media query for very small screens (mobile devices) */
@media (max-width: 600px) {
    .logo {
        max-width: 85%; /* Further reduce logo size on small devices */
    }
}