/*Author: Holly Dahlstrom
    Date Created: 1/16/2025
    This is the style for my wdv221 homework page*/

    @import url('https://fonts.googleapis.com/css2?family=Tsukimi+Rounded:wght@300;400;500;600;700&display=swap');

    body {
        background-color:rgb(212, 178, 55);
        font-family: Arial, Helvetica, sans-serif;
    }

    #container {
        width:80%;
        max-width: 1025px;
        border: 4px solid rgb(43, 46, 45);
        margin: 12px auto;
        border-radius: 25px;
        box-shadow: 15px 15px 15px 5px rgba(0, 0, 0, 0.5);
        background-color: rgb(241, 242, 237);
    }
    
    img.banner {
        width: 100%;
        height:auto;
        border-top-left-radius: 22px;
        border-top-right-radius: 22px;
    }

    h1 {
        color:rgb(163, 119, 42);
        text-align: center;
        font-family: "Tsukimi Rounded", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 2.5em;
        border-top: 4px solid rgb(245, 167, 66);
        padding-top:6px;
        margin-top: 12px; 
        }

    h2 {
        color:rgb(163, 119, 42);
        font-family: "Tsukimi Rounded", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 2.5em;
    }
    p {
        color:rgb(163, 119, 42);
        font-family: "Tsukimi Rounded", sans-serif;
        font-weight: 400;
        font-style: normal;
        line-height: 1.6;
        text-align: left;
        font-size: 1.2em;
        padding: 0 24px;
    }

    footer {
        background-color: rgb(43, 46, 45);
        color: rgb(250, 250, 250);
        text-align: center;
    }

    footer a, footer p{
        background-color: rgb(43, 46, 45);
        color: rgb(250, 250, 250);
        text-align: center;
    }
