  @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap');
*{
  box-sizing: border-box;
  padding: 0;  
  margin: 0;
  font-family: 'Josefin Sans', sans-serif;
    transition: all .5s;
}
body{
    background-color: black;
}
.navbar {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    box-shadow: -5px -5px 9px rgba(255,255,255,0.45), 5px 5px 9px rgba(94,104,121,0.3);
}
.navbar ,footer{
    background-color: #dde1e7;
    width: 100%;
    display: grid;
    grid: auto-flow dense/ 1fr 1fr 1fr; 
}
.logomaker{
    display: flex;
    align-items: center;
}
.logomaker span {
    width: 20px;
    line-height: 1.3rem;
}
#logo{
    border-radius: 100%;
    height: 7rem;
    margin: 1rem;
    cursor: pointer;
    justify-self: start;
    box-shadow: -5px -5px 9px rgba(255,255,255,0.45), 5px 5px 9px rgba(94,104,121,0.3);
}
#logo:hover {
    box-shadow: -2px -2px 4px rgba(255,255,255,0.45), 2px 2px 4px rgba(94,104,121,0.3);
}
.navlist {
    display: flex;
    list-style-type: none;
    align-items: center;
    justify-content: end;
}
.navlist li {
    font-size: 1.11rem;
    font-weight: 700;
    width: 7rem;
    padding: .5rem;
    margin: .5rem;
    background-color: #dde1e7;
    text-align: center;
    border-radius: 2rem;
    box-shadow: -5px -5px 9px rgba(255,255,255,0.45), 5px 5px 9px rgba(94,104,121,0.3);
}
.navlist li:hover {
    background-color: rgb(243 255 243);
    box-shadow: -2px -2px 4px rgba(255,255,255,0.45), 2px 2px 4px rgba(94,104,121,0.3);

}
.navlist li:hover a{
    color: blue;
}
.navlist li a{
    text-decoration: none;
    color: #000000;
}
.btn {
    border: none;
    padding: .3rem;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    background-color: #dde1e7;
    box-shadow:  -5px -5px 9px rgba(255,255,255,0.45),  5px 5px 9px rgba(94,104,121,0.3);
}
.btn:hover{
    color: blue;
    background-color: rgb(243 255 243);
    box-shadow: -2px -2px 4px rgba(255,255,255,0.45), 2px 2px 4px rgba(94,104,121,0.3);
}
.burger {
    display: none; 
    position: absolute;
    top: 45px;
    right: 23px;
}
/* instagram feed  */
.instagram {
    background-color: #dde1e7;
    display: flex;
    
}

/* map  */
.mapp {
    display: flex;
    justify-content: center;

}
.mapouter{
    background-color: #dde1e7;
    text-align: right;
    width: 100%;
    height: 80vh;
    padding: 2rem;
    align-content: space-evenly;
    align-items: end;
    justify-items: center;

}
.gmap_canvas {
    overflow:hidden;background:none!important;
    width:100%;
    height:60vh;
    border-radius: 2rem;
    box-shadow:  -5px -5px 9px rgba(255, 255, 255, 0.692),  5px 5px 9px rgba(70, 76, 85, 0.5);
    outline: none;
}
.gmap_iframe {
    height:100%!important;
    
}
.address , .about {
    background-color:#dde1e7;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    text-align: center;
}
.address h2 , #name{
    font-size: 2rem;
    font-weight: 900;
    margin: 1rem;
}
.address p , .about-main p{
    padding: 2rem;
}
#direction {
    padding: 1rem;
    margin: 2rem;
    background-color: #0084ff;
    border: none;
    border-radius: 2rem;
    box-shadow:  -5px -5px 9px rgba(255, 255, 255, 0.692),  5px 5px 9px rgba(70, 76, 85, 0.5);
    outline: none;
}
 #direction:hover{
    background-color:#0067c7;
    box-shadow:  -2px -2px 4px rgba(255, 255, 255, 0.692),  2px 2px 4px rgba(70, 76, 85, 0.5);
    outline: none;
}
 #direction a {
    color:#8bc7ff ;
    font-size: 1.2rem;
    text-decoration: none;
}
 #direction a:hover {
    color: white;
}

/* about  */
.about-main{
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin: 2rem;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow:  -5px -5px 9px rgba(255, 255, 255, 0.692),  5px 5px 9px rgba(70, 76, 85, 0.5);
}

.profile {
    height: 15rem;
    width: 15rem;
    border-radius: 100%;
    box-shadow:  -5px -5px 9px rgba(255, 255, 255, 0.692),  5px 5px 9px rgba(70, 76, 85, 0.5);
}
.about-main p {
    width: 75%;
}


/* footer  */
footer {
    position: relative;
    bottom: 0;
    height: 20rem;
}
footer #logo {
    height: 15rem;
    align-self: center;
}
footer .navlist {
    flex-direction: column;
}
footer .navlist li {
    width: 12rem;
    height: 3rem;
    display: flex;
    justify-content: center;
}
footer .navlist li a{
   display: flex;
    align-items: center;
    width: 15rem;
    justify-content: space-evenly;
}
