body {
    font-family: roboto, verdana, sans-serif;
    background-color: #ffd372;
    color: rgb(black);
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
}

/* * {
    box-sizing: border-box;
} */

/* button like styling from w3 */
.blink {
    display: inline-block;
    margin: 2px;
    padding: 3px;
    background-color: #F49CC4;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 4px;
}
/* button like link end */

header {
    padding: 2em;
    border: solid 4px transparent;
    /* border-radius: 50px; */
    /* border-image: url(images/AdobeStock_578270867optimized.png) 30 5 round; */
    border-image-source: url(images/AdobeStock_578270867optimized.png);
    border-image-slice: 30;
    border-image-width: 5;
    border-image-repeat: round;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

a {
    font-family: montserrat, arial, sans-serif;
    font-weight: 400;
    font-size: large;
    color: black;
}

a:link,
a:active,
a:visited {
    text-decoration: none;
}

a:hover {
    background-color: hotpink;
}

dd {
    margin-left: 5em;
}

h1, h2, h3 {
    font-family: montserrat, arial, sans-serif;
    color: #7CAADC;
}


footer {
    border-bottom: 2px solid rgb(236, 39, 39);
    font-family: montserrat, arial, sans-serif;
    font-variant: small-caps;
    font-weight: 600;
}

#bird {
    height: auto;
    width: 10%;
    border: 2px solid rgb(236, 39, 39);
    border-radius: 15em;
}

     /* ipads */
     /* @media (max-width: 1080px) {
        header {
         background-size: cover;
        }
     } */

    /* phones */
    @media (max-width: 768px) {
        header {
            flex-direction: column;
            justify-content: space-evenly;
        }

        #bird {
        height: auto;
        width: 25%;
        border: 2px solid rgb(236, 39, 39);
        border-radius: 15em;
    }
    }
