*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body{
    background: #0e1a24;
    color: white;
}

#header {
    width: 100%;
    height: 100vh;
    position: relative;
    padding-top: 20px;
}
h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-align: left;
    margin-top: 20px;
    margin-left: 20px;
}
p.subheader {
    font-size: 1em;
    font-weight: 300;
    color: #fff;
    text-align: left;
    margin-top: 10px;
    margin-left: 20px;
}

#header::after {
    content: "";
    background-image: url('images/header_background.png');
    background-size: contain; /* Use contain to ensure the entire image fits */
    background-repeat: no-repeat;
    background-position: bottom right; /* Position the image at the bottom right */
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%; /* Control the size of the background image */
    height: 50%; /* Control the size of the background image */
}