/*RESET*/
html, body, div, span, applet, object, iframe,
h1, 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;
  background-color: black;
  color: white;
  font-family: PixelOperator;
  font-family: 'PixelOperator', sans-serif;
  position: relative;
  height: 100vh;

  display: flex;
    flex-direction: column;
}
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;
}

.video{
  text-align: center;
  margin-top: 15px;
}
iframe{
  width: 60vw;
  height: 40vw;
  border-radius: 5%;
}

#ContactForm {
  display: flex;
  flex-direction: column;
  width: 50vw;
}

input {
  margin-bottom: 10px;
}

.ContactLabel {
  font-size: 24px;
}

/*FONT*/
@font-face {
  font-family: 'PixelOperator-Bold';
  src: url('../Resources/fonts/PixelOperator-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'PixelOperator';
    src: url('../Resources/fonts/PixelOperator.ttf') format('truetype');
  }

/*GLOBAL STYLES*/

.MainArticle {
    margin-top: 100px;
}
.Titles{
  display: flex;
  justify-content: center;
}
.Titles h1{
  font-weight: bold;
  font-size: 60px;
  
}
.Titles h2{
  font-size: 60px;
  padding-left: 10px;
}
.description{
  margin-top: 30px;
  padding: 100px;
  font-size: 50px;
  display: flex;
  justify-content: center;
}
.description h1{
  font-weight: bold;
  font-size: larger;
}
#SelectPanel{
    margin-top: 10px;
    width: 500px;
    border-width: 1px;
    border-style: solid;
    border-color:white;
    font-size: 50px;
}

a{
  text-decoration: none;
  color: white;
}
.option :hover{
  background-color: white;
  color: black;
}

.iconContainer{
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 50%;
  position: absolute;
  left: 25%;
  
}

.icon{
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100px;
  height: 100px;
  
}

.icon img{
  max-width: 100%;
  max-height: 100%;
  height: 40%;
  width: 50%;
}

#monigote{
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#monigote img{
  max-width: 100%;
  max-height: 100%;
}

footer{
  margin-top: 20px;
  height: 150px;
  width: 100vw;
  position: relative;
}

.team {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;

  padding-top: 2%;
  padding-left: 10%;
  padding-right: 20%;
}

.team-member{
  padding: 10px;
}
.team-member h1{
  font-weight: bold;
}

.team-member img {
  width: 70px;
  height: 70px;
  border-radius: 10%;
}

@media (max-width: 800px)  
{
  #SelectPanel{
    width: 360px;
    font-size: 40px;
  }
}

@media (max-width: 600px)  
{
  #Titles h1{

    font-size: 30px;
  }
  #Titles h2{
    font-size: 30px;

  }
  #description{

    font-size: 25px;
  }

  #SelectPanel{
      width: 250px;
      font-size: 30px;
  }
}