@font-face {
    font-family: Roboto;
    src: url('Roboto/Roboto-Medium.ttf');
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html{
    font-size: 90%;
    
}
header{
    background-image: url("imgs/aboutnitte.jpg");
}
header div{
    background-color: rgba(250, 250, 250, 0.61);
}

header img{
    padding: 20px;
}

header div p, address{
    color: #000;
    background-color: #f1f1f1cb;
}         

body{
    min-width: 720px;
    background-image: url("imgs/bg.jpg");
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
  }

li{
    list-style: none;
}

a{
    text-decoration: none;
    color: #000;
}

a:hover{
    color: black;
}

img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

header{
    text-align: center;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    overflow: hidden;
}
.navbar a{
    font-weight: 600;
}

.dropdown{
    float: left;
    overflow: hidden;
}
.dropdown .dropbtn {
    font-size: inherit;
    font-weight: 600;
    border: none;
    outline: none;
    color: black;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

#About{
    margin: 3vw;
    border: solid bisque;
    display: flexbox;
    text-align: justify;
    padding: 3vw;
    font-size:larger;
    line-height: 1.7;
    background-color: #fffbf3;
}

footer{
    padding: 0px 0px 18px 0px;
    color: #f1f1f1;
    background-color: #000;
}
footer p{
    font-size: medium;
    text-align: center;
}

footer img{
    width: 40px;
}

#Contact{
    line-height: 34px;
    padding: 20px;
}
#Contact a{
    color: white;
}
