@font-face {
    font-family: 'TWKEverett';
    src: url('path/to/TWKEverett-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'TWKEverett', Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    color: #eb4e20; /* Updated color */
}

p {
    color: #666;
}

img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0.8) sepia(1) hue-rotate(15deg);
}

