/*
Student Name: Olivia McClure
File Name: styles.css
Today's Date: 3 10/2026
*/

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

/*Body Styling*/
/*pink to blue gradient*/
body {
    font-family: "Cedarville Cursive", Arial, sans-serif;
    background: linear-gradient(to bottom, #ffd6ec, #cde8ff);
    line-height: 1.6;
}
/*Navigation*/
nav {
    margin-top: 10px;
}

nav ol {
    list-style-type: upper-roman;
    padding-left: 40px;
}

nav li {
    margin:8px 0;
}

nav a {
   text-decoration: none;
   font-weight: bold;
   color: #333;
}

nav a:hover {
  color: #ff66aa;
}

/*Header*/
header {
    text-align: center;
    padding: 20px;
}

header h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

header h3 {
    font-weight: normal;
    color: #000080;
}

/*Main Content*/
main {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}
/*Images*/
img {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Top Featured Image*/
.featured {
    height: auto;
    width: 400px;
    display: block;
    margin: 20px auto;
}

/*GALLERY IMAGES*/
.gallery {
    column-count: 3;
    column-gap: 15px;
}

.gallery img {
    width:250px;
    display: block;
}

/*Blog Section*/
.blog-box {
    background: linear-gradient(to bottom,
    #ffd6ec, #cde8ff);
    line-height: 1.6;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/*Contact Box*/
.contact-box {
    background: linear-gradient(to bottom,
    #ffd6ec, #cde8ff);
    line-height: 1.6;
    padding: 25px;
    border-radius: 8px;
    max-width: 500px;
    margin: auto;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/*Links*/
.link {
    text-decoration: none;
    color: #333;
}


.link:hover {
    color: #ff66aa;
}

/*Footer*/
footer {
    text-align: center;
    padding: 20px;
    font-size: .9em;
    margin-top: 40px;
}

/*Media Query for Tablet Viewport*/

@media screen and (min-width: 620px) {

    .gallery img {
        width: 300px;
    }
    }
    
/*Media Query for Desktop Viewport*/
@media screen and (min-width: 900px) {
 
 .gallery {
     width: 320px;
 }
  main {
      max-width: 1200px;
  }  
  }

