/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@media only screen and (max-width: 800px) {
    #welcome {
        position: static;
        margin: 20px auto;
        width: 90%;
        height: 550px;
    }
}
#welcome {
    background-color: rgba(218, 243, 251, 0.5);
    border: 2px solid #597147;
    border-radius: 36px;
    position: absolute;
    top: 80px;
    left: 360px;
    width: 585px;
    height: 450px;
    z-index: 2;
}
user agent stylesheet
div {
    display: block;
    unicode-bidi: isolate;
}
body {
    background-color: #C2EBF9;
    width: 99%;
    height: 100%;
    background-image: url(/graphics/bgs/homesky.gif);
    background-repeat: repeat-x;
    background-position: 3% 1%;
    background-attachment: fixed;
    font-family: verdana, sans-serif;
    font-size: 12px;
    line-height: 1.3em;
    color: #3F4A43;
}