@font-face {
    font-family: 'KG True Colors';
    src: url('KGTrueColors.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: sans-serif;
    background-color: #FFF9E9;
}

.wrapper {
    position: relative;
    min-height: 100%;

    border: 20px solid #064420;
    box-sizing: border-box;
    z-index: 1;
}

.splash {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    z-index: 1;
}

.logo {
    max-width: 150px;
    margin-bottom: 10px;
}

.org-name {
    font-family: 'KG True Colors', sans-serif;
    font-size: 2rem;
    color: #064420;
    padding-right: 20px;
}

.content {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    font-size: 1.2rem;
}

.contact {
    font-weight: bold;
    margin-top: 20px;
}