/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, 
h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


body {
    background-color: rgb(138, 150, 184);
}

.icon {
    float: right;
}

.topnav {
    overflow: hidden;
    background-color: #926651;
    position: relative;
    border: 2px solid;
  }
  
.topnav #myLinks {
    display: none;
    font-size: x-large;
}
  
.topnav a {
    float: left;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  .topnav a.icon {
    float: right;
  }
  
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .active {
    background-color:  #926651;;
    color: white;
    font-size: x-large;
    color: black;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
  }

footer {
    background-color: #926651;
    border: 2px solid;
}

p {
    text-align: center;
}

h1 {
    text-align: center;
}

.font1 {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
  }

.cambridge1 {
    float: left;
    width: 300px;
    margin-left: 100px;
}

.info {
    margin-left: 500px;
    margin-right: 500px;
}
  
.font2 {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
  }

.margins {
    margin-bottom: 10px;
    margin-top: 10px;
}

		.item1 { grid-area: header; }
		.item2 { grid-area: other-header; }
        .item3 { grid-area: section1; }
        .item4 { grid-area: section2; }
        .item5 { grid-area: section3; }
        .item6 { grid-area: section4; }
		.item7 { grid-area: section5; }
        .item8 { grid-area: section6; }
        .item9 { grid-area: section7; }
        .item10 { grid-area: section8; }
        .item11 { grid-area: footer;}
        
        .grid-container {
          display: grid;
          grid-template-areas:
            'header header header header'
			'other-header other-header other-header other-header'
            'section1 section2 section3 section4'
            'section5 section6 section7 section8'
            'footer footer footer footer';
          gap: 10px;
          background-color: #000000;
          padding: 10px;
        }
        
        .grid-container > div {
          background-color: rgb(99, 195, 210);
          text-align: center;
          font-size: 30px;
          word-wrap: break-word;
        }

.photos {
	display: flex;
	justify-content: space-around;
}