*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
body {margin:0;}
.navbar {
    overflow: hidden;
    background-color: #046e64;
    position: fixed;
    top: 0;
    width: 100%;
  }
  
.navbar a {
    float: right;
    display: block;
    color: #ffffff;
    text-align: center;
    padding: 16px 16px;
    text-decoration: none;
    font-size: 20px;
  }
.navbar p{
      float: left;
      color: white;
      font-size: 30px;
      cursor: pointer;
      align-items: baseline;
      padding: 10px;
  }
  
.navbar a:hover {
    background: rgb(255, 255, 255);
    color: black;
  }
.content{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(media/subratabg.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
    top: 50%;
    color: white;
}
.content h1{
    color: white;
    font-size: 70px;
    margin-top: 30px;
    position: static;
}
.content p{
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px;
}
button{
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 20px 10px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid #046e64;
    background: #046e64;
    color: white;
    cursor: pointer;
    position: static;
}
.about{
    text-align:center;
    color: rgb(0, 0, 0);
}
.about p{
    font-size: 20px;
    text-align: justify;
    padding: 30px;
}
.about img{
    border-radius: 160px;
    border: 5px solid #046e64;
    float: left;
    margin: 50px;
}
.about a{
    color: rgb(255, 255, 255);
    border: 2px solid #046e64;
    border-radius: 25px;
    padding: 10px;
    background-color: #046e64;
    text-decoration: none;
}
.about div{
    font-size: 15px;
    text-align:center;
    font-style: italic;
}
.gallery{
    text-align: center;
    color: black;
}
.gallery img{
    border-radius: 25px;
    border: 5px solid #046e64;
}
.service{
    text-align: center;
    color: black;
}
.scale{
    width: 250px;
    height: 200px;
    color: white;
    padding: 30px;
    background-color: rgb(0, 0, 0);
    display: inline-block;
}
.scale:hover{
    transform: scale(1.25);
    transition: 2s;
}
.contact{
    text-align: center;
    color: rgb(0, 0, 0);
}
.contact form{
    color: white;
    padding: 20px;
    background-color: #013a34;
}
.footer{
    text-align: center;
    height: 30px;
    color: white;
    background-color: gray;
}
.footer p{
    padding: 5px;
}