
body {
  font-family: 'Roboto', sans-serif;
  background-color: white;
  margin: 0 auto;
}

.mobile{
  display: none;
}

.mobileError{
  display: block;
  border: 1px solid black;
  width: 250px;
  margin: 0 auto;
  margin-top: 150px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
}


header {
  height: 50px;
  width: auto;
  background-color: #0E76D7;
}



.head {
  display: grid;
  width: auto;
  height: 50px;
  background-color: #0E76D7;
  margin: 0 auto;
  grid-template-columns: 50px auto;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
}

.logo {
  display: grid;
  width: 100%;
  height: 100%;
  align-self: center;
  justify-self: center;
  grid-template-columns: 50px auto;
}

.logo img {
  height: 40px;
  width: 40px;
  align-self: center;
  justify-self: center;
}

.h1 {
  display: flex;
  position: absolute;
  margin: 0 auto;
  overflow: hidden;
  height: 50px;
  width: 100%;
}

.h1 h1 {
  justify-self: center;
  align-self: center;
  margin: 0 auto;
  font-family: sans-serif;
  font-size: 25px;
}

section {
  padding-top: 10px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
  margin: 0 auto;
  height: 250px;
  display: grid;
}

article {
  margin: 0 auto;
}

.article {
  margin-bottom: 100px;
}

.article h1 {
  padding: 10px;
}

.eventos {
  position: relative;
  width: 250px;
  height: 140px;
  margin: 10px auto;
  border-radius: 10px;
  cursor:pointer;
  overflow: hidden;
}

.eventos img{
  width: 100%;
  height: 100%;
  object-fit:fill;
}

.eventos p {
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translate(-50%);
  z-index: 1;
  color: white;
  font-size: 24px;
}

@media screen {
  
}

@media only screen and (max-width: 768px){

.mobile{
  display: block ;
}

.mobileError{
  display: none;
}

}