@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html {
    font-family: "Roboto", sans-serif;
    margin: 10px;
    background: url("/images/wallpaper.jpg");
}


h1 {
    font-family: "Pinyon Script", serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: .75;
    margin-bottom: 0;
    text-shadow: 1px 1px 1px lightgray;
    

}

.container {
    display: flex;
    align-items: center;
    justify-content:space-around;
}

.header-border {
    height: 1rem;
    width: 100%;
}

#header-img {
    margin-bottom: 0;
    max-width: 150px;
    height:max-content;    
    margin-right: 1rem;
}

.header-text {
    padding-right: 1rem;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
}

.header-text p {
    margin-top: 1rem;
    font-family: "Garamond";
    font-weight: bold;
}



@media screen and (max-width: 600px) {
    html {
        font-size: 1.25rem;
    }
    
    h1 {
        font-size: 2.25rem;
    }

    #header-img {
        flex-shrink: 1;
        flex-basis: 10px;
        order: 10;
    }

    .header-text p {
        margin-top: .75rem;
        font-family: "Garamond";
        font-weight: bold;
        font-size: .90rem;
    }
}

