body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    color: #808080;
}

.container-start {
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
	min-height: 40vh;
    padding: 10px;
	text-align: center;
}

.container-footer {
    display: flex;
	flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 0vh;
    padding: 0px;
    text-align: center;
}

.container-page {
    align-items: left;
	min-height: 40vh;
    padding: 10px;
    text-align: left;
}

img.logo {
    max-width: 80%;
    max-height: 100px;
    height: auto;
}

a.email-link {
    color: #007BFF;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 20px;
    display: block;
}

a.email-link:hover {
    text-decoration: underline;
}

.email-button {
    background-color: #97C11F;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
	margin-bottom: 20px;
}

.email-button:hover {
    background-color: #7A9C19;
}


.nav-button {
    background-color: #ffffff;
    color: #9E9E9E;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
	margin-left: 5px;
	margin-right: 5px;
}

.nav-button:hover {
    background-color: #eeeeee;
}


@media (max-width: 768px) {
    .email-link {
		font-size: 16px;
    }

    .email-button {
        padding: 10px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    img.logo {
        max-width: 100%;
        max-height: 150px;
    }

    .email-link {
        font-size: 15px;
    }

    .email-button {
        padding: 10px 18px;
        font-size: 14px;
    }
}
