body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #000000;
}

header {
    background-color: #ffffff; /* white */
    padding: 20px 5%; /* Gives some "breathing room" on the sides */
}
.header-container {
    display: flex;
    flex-direction: column; /* Stacks logo above text */
    align-items: center;    /* Centers the logo and text box horizontally */
    text-align: center;     /* Justifies the text lines to the center */
    padding: 40px 20px;
    background-color: #ffffff;
}

.logo {
    width: 400px;           /* Scales that massive image down */
    height: auto;           /* Keeps the bird from getting squished */
    margin-bottom: 20px;    /* Adds space before the text starts */
    
    /* Temporary fix for the white background box */
    mix-blend-mode: multiply; 
}

h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    margin: 0;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-top: 5px;
}
h1 {
    font-size: 3rem;
    margin-bottom: 0;
}