/*
    Viktoria Vasquez
    styles.css
*/

/*css reset*/
body, header, nav, main, footer, img, h1, h3 {
    margin: 0;
    padding: 0;
    border: 0;
}

main {

}

body {
    font-family: Helvetica, sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #333;
    background-color: #f9f9f9;
    text-decoration: none;
}

/*style rules for body and images----------------------------------------*/
img {
    max-width: 100%;
    display: block;
    margin: 0;
    
}

article {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

article img {
    max-width: 25%;
}

h2, h3, h4, h5 {
    color: #344f9e;
    font-weight: bold;
    font-family: helvetica;
    font-style: italic;
}

/*FIGURES-----------------------------------------------*/

.figcenter { /*put in parent selector*/
    text-align: center;
}

figure {
    display: inline-block;
    gap: 20px;
    flex-wrap: wrap;
    background-color: white;
    border: 5px solid #344f9e;
    border-radius: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 20px               ;
    color: #252525;
    

    
    
}

figure figcaption a {
    Padding: 10px;
    background-color: #344f9e;
    
    text-decoration: none;
    color: white;
    border-radius: 15px;
}


figure img {
    width: 100%;
    height: auto;
    border: 5px solid #344f9e;
    border-radius: 15px;
    margin: 11%;

}

figure figcaption {
    text-decoration: none;
    border: #344f9e;

}


/*ARTICLES-----------------------------------------------*/
article {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    line-height: 1.6;
    
}

aside {
 
}



/*style rules to show mobile class and hide tab-desk class-------------*/
.mobile {
    
}

.tab-desk {
    display: none;
}

.mobile h1 {
    
}

.mobile h3 {
    
}



/*classes--------------------------------------------------------------*/

.accenttext {
    text-align: right;
    font-weight: bold;
    font-size: 88%;
    color: #344f9e;
    font-family: helvetica;
    
    background-color: white;
    border: 10px solid white;
    border-radius: 15px;
    border-bottom: 2px;

}

.accentp {
    background-color: #344f9e;
    color: white;
    padding: 3% 10%;
    margin: 0;
}

.accentp h2 {
    color: white;
}
.donationfig {
    width: 100%;
    max-width: ;
}

.margin {
    margin: 5% 15%;
}

.color1 {
    background-color: #252525;
    color: #efeee9;
}

.color2 {
    background-color: white;
    color: #252525;
}

.logo {
    max-width: 10%;
}

.logocontainer {
    display: grid;
    grid-template-rows: 100px 100px 100px 100px;
    grid-template-columns 100px 100px 100px 100px;
    
    
}



.medimg {
    max-width: 50%;
}

/*style rules for nav---------------------------------------------------*/
nav {

}

nav ul {
    list-style-type: none;
    margin: 0;
    text-align: center;
    background-color: white;
    border-bottom: 5px solid #344f9e;
    line-height: 1.6;
    padding: 5px;

}

nav li {
    display:block;
    font-weight: bold;
    font-family: helvetica;
    border: 5px solid #344f9e; 
    
    
}

nav ul li a:hover {
    color: red;
}

nav li a {
    display: block;
    text-decoration: none;
    padding: 0.5em 2em;
    color: #344f9e;
    
}


/*style rules for footer content-----------------------------------------*/
footer {
    text-align: center;
    font-size: 0.85em;
    background-color: #344f9e;
    padding: 1% 0;
    color: white;
    
}

footer a {
    text-decoration: none;
}


/*media query for tablet viewport-----------------------------------------*/
@media screen and (min-width: 620px), print {
    /*Tablet viewport: show tab-desk class, hide mobile class*/
    body {
        margin: 0;
    }
    .tab-desk {
        display: inline;
    }
    .mobile {
        display: none;
    }
    
    /*tablet viewport: style rules for nav area*/
    nav ul {
        display
        background-color: pink;
    }
    nav li {
        border: none;
        display: inline-block;
        font-size: 1.25em;
    }
    
    nav li a {
        padding: 0.5em;
    }
    
    figure {
    width: 20%;
    max-width: 500px;
    height: auto;
    
    }
}


/*Media Query for Large desktop viewports----------------------------------*/
@media screen and (width-min: 1921px) {
    body {
        background: ;
        margin: 0;
    }
    #wrapper {
        width: 1920px;
        margin: 0 auto;
    }
    main {
        background-color: ;
    }
    
    nav ul {
    background-color: yellow;    
    }
    nav li {


    
}
    
    
/*media query for print*/
@media print {
    body {
        background-color: white;
        color: black;
    }
    
}

/*media query for desktop viewport----------------------------------------*/
@media screen and (min-width:1000px), print {
    /*desktop viewports: style rules for nav area*/
    nav ul {
    background-color: purple;    
    }
    nav li {
        font-size: 1.5em;
    }
    nav li a {
        padding: 0.5 1.5em;
    }
    nav li a:hover {
        color: #344f9e;
        background-color:white;
    }
    body {
        margin: /*5% 20%*/0;
    }
}

/*desktop viewport: style rules for main content*/
#info ul {
    margin-left: 5%;
}


