@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

.t-primary-bgcolor {
    background-color: #333;
}

body {
    background-color: #fff;
}

.header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    background: url('watermark.png');
    background-repeat: no-repeat;
    background-position-x: calc(50% + 120px);
    background-position-y: -100px;
    background-size: 712px;
}

.header__logo img {
    max-height: 180px;
    width: auto;
    display: block;
}

.school-name {
    display: inline-block;
    /* ensure it has a box */
    line-height: 1.1;
}

/* pseudo-elements for the two lines */
.school-name::before {
    content: "Pass Christian";
    display: block;
    font-size: 50px;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
    color: rgb(221, 19, 23);
    text-transform: uppercase;

}

.school-name::after {
    content: "Public School District";
    display: block;
    font-size: 28px;
    color: rgb(57, 84, 162);
    font-family: "Raleway", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}