* {
    margin: 0;
    padding: 0;
    text-align: center;
}

p {
    font-family: Arial, sans-serif;
    font-size: 1em;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100vw;
    background-color: #f0f0f0;
}

.header, .footer, .content {
    font-family: Arial, sans-serif;
    width: 100vw;
}

.header, .footer {
    color: white;
    padding: 20px 0px 20px 0px;
    height: 5vh;
    text-align: center;
}

.header {
    color: #333;
    height: 300px;
}

.header-text {
    font-size: 2em;
    color: #282c34;
    font-family: 'Copperplate', 'Copperplate Gothic Light', sans-serif;
}

.footer {
    background-color: #282c34;
}

.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    display: flex;
    width: 50vw;
    flex-direction: column;
    align-items: center;
    line-height: 30px;
}

.content b {
    color: rgb(104, 0, 0);
    font-size: 1.5em;
}

.section-header {
    font-size: 1.5em;
    color: #282c34;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.important-text {
    color: #524f00;
    font-size: 1.2em;
    font-weight: bold;
}

.content-picture {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin-bottom: 20px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #ccc;
}

#email-contact {
    text-decoration: none;
    color: #cae4ff;
}

@media screen and (max-width: 1000px) {
    .content {
        width: 90vw;
    }

    .header-text {
        font-size: 1.5em;
    }

    .section-header {
        font-size: 1.2em;
    }

    .important-text {
        font-size: 1em;
    }
}