/* General settings */
body {
    margin: 0;
    font-family: "Gill Sans", Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f0f0f0;
}

/* Banners */
.banner {
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

.name {
    background-color: #0D3B66; /* Red */
}

.job {
    background-color: #FAF0C1; /* Yellow */
}

.contact {
    background-color: #F4D35E; /* Green */
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
}

/* Text styles */
h1 {
    font-size: 2.25em; /* 1.5 times the size of h2 */
    margin: 0;
    color: #fff;
}

h2 {
    font-size: 1.5em;
    margin: 0;
    color: #000;
}

.contact a, .contact #email {
    font-size: 1em;
    color: #000;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 600px) {
    .contact {
        flex-direction: column;
    }
}
