@font-face {
  font-family: 'openSans';
  src: url('fonts/OpenSans-Regular-webfont.woff') format('woff');
}
@font-face {
  font-family: 'openSans';
  src: url('fonts/OpenSans-Bold-webfont.woff') format('woff');
    font-weight: bold;
}
@font-face {
  font-family: 'openSans';
  src: url('fonts/OpenSans-Italic-webfont.woff') format('woff');
    font-style: italic;
}
@font-face {
  font-family: 'openSans';
  src: url('fonts/OpenSans-BoldItalic-webfont.woff') format('woff');
    font-weight: bold;
    font-style: italic;
}


html, body {
    margin: 0;
    height: 100vh;
    width: 100vw;
    font-family:  'openSans', sans-serif;	
    font-size: 16px;
}

.content{
	text-align: center;
}

.noneList{
  list-style-type:none;
  line-height:150%;
}

.blueText{
  color: rgba(0, 60, 136, .8);
}


.words{
	text-align: justify;
	padding: 0 15vw 2vh 15vw;
}

.questions{
  padding: 0 5vw 2vh 5vw;
  text-align: left;
}

.bold{
  font-weight: 600;
}



.edin1893btn{
	/*color : #fff;*/
  display: inline-block;
	color: black;
  border-radius: 3px;
	border: 1px solid rgba(0,60,136,.5);
  background-color: rgba(0,60,136,.2);
	padding: .2em;
	margin: .2em;	
	white-space:nowrap;
}

.wordsOther{
  padding: 0 50px 2vh 50px;
}

.large-logos{
	max-height: 100px;
	width: auto;
}

.logos{
	max-height: 40px;
	height: auto;
}

.menu{
  display: flex;  
  align-items: center;  
  justify-content: center;
  gap: 5vw;
  flex-wrap: wrap;
  background-color: lightslategrey;
}

.menu a{
  color:linen;
  text-decoration: none;  
  padding: 10px;
}

.menu a:hover{
  background-color:darkgray;
}

.projcoll{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  font-size: .9em;
  text-align: left;
}

.proj{
  width: 400px;
  border: 2px solid rgba(128, 128, 128, .3);
  min-height: 200px;
  margin-bottom: 10px;
  border-radius: 15px;
  padding: 5px;
} 


.extImg{
  float: left; 
  width: 200px;
  height: 200px;
  margin-right: 10px;
  margin-bottom: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  border: 1px solid rgba(128, 128, 128, .2);;
}


.header{
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom:5px;
}

.intro{
  padding-top: 20px;
}

.projTitle a{
  font-weight: bold;
  text-decoration: none;
  color: black;
}

@media (max-width: 950px){

  .wordsOther{
    padding: 0 20px 2vh 20px;
  }

  .projcoll{
    justify-content: center;
  }
}