@charset "UTF-8";

body {
    font-family: Verdana, Geneva, sans-serif;
    color: rgb(255, 255, 255);
    background-color: rgb(129, 176, 245);
    margin: 0 auto;
    width: 90%;
    height: 100%;
}

header {
    background-color: rgb(0, 0, 0);
    text-align: center;
    width: 100%;
}

header img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    height: auto;
}


html {
        background-image: url(background.jpeg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
    }

h1 {
    font-size: 2.5em;
    color: #202844;
}

.title {
    font-size: 2.5em;
    color: #202844;
    text-decoration: underline;
}

.message {
    font-size: 50px;
    color: #8000ca;
}

h2 {
    font-size: 1.3em;
}

.cause-title {
    font-size: 1.1em;
    color: #8b59a8;
    text-decoration: underline;
}

nav {
    background-color: #000000;
    border-top: 1px solid #222;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 100px;             
} 

nav a {
    display: block;
    background-color: #000000;
    line-height: 2.8em;
    text-decoration: none;
    text-align: center;
    color: #ecf0f1;
}

nav a:hover {
    background-color: #66d2f3;
    color: white;
}

main {
    padding: 20px;
    margin-top: 35px;
    clear: both;
}

main > img {
    width: 50%;
    padding: 0px;
    float: right;
    border: 5px solid #000000;
    
}


img header {
    width: 100%;
}

body > footer {
    background: #000000;
    color: rgba(236, 240, 241, 0.6);
    font-weight: bold;
    font-size: 0.9em;
    line-height: 3em;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    clear: both;
}

ul {
    list-style-type: square;
}


