
body{
  font-family: sans-serif;
  margin: 0;
  max-width: 100vw;
  height: 100vh;
  background-image: url("background-img.jpg");
}

.tab{
  height: 100px;
  width: 100%;
  background-color: rgba(239,160,166,255);
  position: fixed;
  text-align: center;
  border-bottom: 2px dashed;
}

h1{
  margin-top: 30px;
}

.content{
  padding-top: 100px;
  width: 100%;
  text-align: center;
}

h2{
  font-size: 25px;
  font-weight: lighter;
  margin: 0;
  margin-bottom: 20px;
}

.title{
  margin-top: 10px;
}

.gallery{
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

img{
  margin: auto;
  width: 100%;
  max-width: 50vw;
  border-radius: 10px;
  border: 3px solid rgb(255, 139, 139);
  object-fit: cover;
}

.gallery p{
  font-size: 18px;
  margin-top: 5px;
  margin-bottom: 30px;
}

footer{
  height: 100px;
  background-color: rgba(239,160,166,255);
  border-top: 2px dashed;
  text-align: center;
}

footer p{
  font-style: italic;
}