/* comments in css are done like this */
/* uncomment the properties below to see how they effect the text in the html file */
/* then try them in combinations and altering their values */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&display=swap');

body {background-color:  ;}




img{
  width: 50%;
    margin: 0 auto;
    }

#images{
   
    text-align: center;
}

h1{
  /* we use the google font specified font family */
  text-align: center;
  font-family: 'Raleway', sans-serif;
  color: #c34833; /* you can use the adobe color wheel to get the values of "HEX" colors */
  font-size: 65px;
  margin: 20px;
  
}

h2{
    text-align: center;
  font-family: 'Raleway', sans-serif;
  color: #c34833;
}
/* these styles will effect links */
a{
  color: #0000ff;
  text-decoration: underline;
}

/* and this will effect the paragraph 'p' elements */
p{
    
  font-size: 20px;
  color: #888888;
  /* we can also set the width of a box.*/
  max-width: 600px;
  /* and the margins on each side of the boc*/
  margin: 0 auto;
}

/* this is the class of the 'div' that all of the content sits in */

#container{
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}


    .row {
  position: relative;
  width: 100%;
}


/* This CSS is based on SIMPLE GRID by ZACH COLE 2016 */

/* RESET any default browser styling */
/* you won't need to change anything here */

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  font-size: 100%;
}

/* we want images to be 100% width of the column they are in within the grid */
/* you should not need to edit this */
img{
  width: 100%;
  margin: 10px 0 10px 0;
}

/* Paragraph FONT STYLES */
/* edit these to reflect how you would like you copy text to appear */

* {
  font-family: 'Open Sans', sans-serif;
  color: #333447;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

li {
  float: right;
}

li a {
  display: block;
  padding: 20px;
  ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

li {
  float:right;
    text-align: center;
}

li a {
  display: block;
  padding: 20px;
  background-color: #ffffff;
}
}
/* HEADING FONT STYLES */
/* edit these to reflect how you would like you Header text to appear */
img.logo{
    width: 60px; 
    height: 55px; 
    position:absolute; 
    left: 9px; 
    top:25px; 
    bottom:5px;
}

img.doodle{
    width: 200px; 
    position:relative;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;     
}

.div.centerimage{
    text-align: center;
    
}


/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: ;
  
}

/* Links inside the navbar */
.navbar a {
  float: right;
  font-size: 16px;
  color: black;
  text-align: center;
  padding: 10px 10px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: right;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  border: none;
  outline: none;
  color: white;
  padding: 10px 10px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: rgba(211, 62, 44, 0.63);
    }
.pintrest a:hover{
   background-color: #c34833;
    
}
/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 5px;
  text-decoration: none;
  display: block;
  text-align: right;
    font-family: 'Raleway', sans-serif;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: rgba(211, 62, 44, 0.63);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display:block;
}

a:link {
    color: black;
    text-decoration: none;
    }

a:visited {
    color: #DC7463;
    text-decoration: none;
    }

a:hover {
    color: #F6F1E9;
    text-decoration: none;
    }

h1 {
  font-size: 2.5rem;
  font-family: 'Raleway', sans-serif;
   
}

h2 {
  font-size: 2rem;
  font-family: 'Raleway', sans-serif;
     padding-top: 10px;
        padding-bottom:30px; 
}

h3 {
  font-size: 1.375rem;
  font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

h4 {
  font-size: 1.125rem;
    font-family: 'Raleway', sans-serif;
    
}

h5 {
  font-size: 1rem;
    font-family: 'Raleway', sans-serif;
}

h6 {
  font-size: 0.875rem;
    font-family: 'Raleway', sans-serif;
}

p {
  font-size: .85rem;
  margin: 10px 0 10px 0;
  font-family: 'Raleway', sans-serif;
    color: #464949;
    padding-bottom: 15px;
    padding-top: 15px;
    
}

indexlinks{
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    color: black;
}

/* POSITIONING */
/* add these classes to position an element */
/* eg: <h1 class="center">A centered title</h1> */

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.justify {
  text-align: justify;
}

/* ==== GRID SYSTEM ==== */
/* don't need to edit anything from here down */
/* this sets up the responsive grid for you which you can use in your html */

.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.row {
  position: relative;
  width: 100%;
}

.headerrow {
  position: relative;
  padding-bottom: 20%;
  width: 100%;
  height: 100%;
}

.headerrow2 {
  position: relative;
  padding-top: 10%;
  padding-bottom: 10%;
  width: 100%;
  height: 100%;
}

.row [class^="col"] {
  float: left;
  margin: 0.5rem 2%;
  min-height: 0.125rem;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 96%;
}

.col-1-sm {
  width: 4.33%;
}

.col-2-sm {
  width: 12.66%;
}

.col-3-sm {
  width: 21%;
}

.col-4-sm {
  width: 29.33%;
}

.col-5-sm {
  width: 37.66%;
}

.col-6-sm {
  width: 46%;
}

.col-7-sm {
  width: 54.33%;
}

.col-8-sm {
  width: 62.66%;
}

.col-9-sm {
  width: 71%;
}

.col-10-sm {
  width: 79.33%;
}

.col-11-sm {
  width: 87.66%;
}

.col-12-sm {
  width: 96%;
}

.row::after {
	content: "";
	display: table;
	clear: both;
}

.hidden-sm {
  display: none;
}

@media only screen and (min-width: 33.75em) {  /* 540px */
  .container {
    width: 80%;
  }
}

@media only screen and (min-width: 45em) {  /* 720px */
  p {
    font-size: 1rem;
  }

  .col-1 {
    width: 4.33%;
  }

  .col-2 {
    width: 12.66%;
  }

  .col-3 {
    width: 21%;
  }

  .col-4 {
    width: 29.33%;
  }

  .col-5 {
    width: 37.66%;
  }

  .col-6 {
    width: 46%;
  }

  .col-7 {
    width: 54.33%;
  }

  .col-8 {
    width: 62.66%;
  }

  .col-9 {
    width: 71%;
  }

  .col-10 {
    width: 79.33%;
  }

  .col-11 {
    width: 87.66%;
  }

  .col-12 {
    width: 96%;
  }

  .hidden-sm {
    display: block;
  }
}

@media only screen and (min-width: 60em) { /* 960px */
  p {
    font-size: 1.1rem;
  }

  .container {
    width: 75%;
    max-width: 60rem;
  }
}
