@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');

header {
    margin: 5px;
    height: 15vh;
    border-radius: 17px;
    border: 1px solid #28376a;
    background-color: #28376a;
}

#logoImage {
    width: 160px;
    height: 50px;
    float: left;
    margin-top: 15px;
    margin-left: 10px;
}

nav {
    float: right;
    margin: 20px 25px 0px;
    background-color: #28376a;
}

a {
    color: #eeeeee;
    font-family: 'Abel', sans-serif;
  }

nav li {
    list-style: none;
    display: inline;
    margin-right: 30px;
}

nav li a:hover {
    color: #cf566a;
}


nav  li a {
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

body{
   background: #f6f6f6;
}

.box{
   width: 77%;
   margin: 10px auto;
   background: #fff;
   border-radius: 18px;
   box-shadow: 1px 2px 4px rgba(0,0,0,.3);
}

.box .heading{
   background: #28376a;
   height: 65px;
   border-radius: 8px 8px 0px 0px;
   padding: 30px;
   color: #fff;
   text-align: center;
   font-family: 'Abel', sans-serif;
   font-size: 40px;
}

.faqs{
   padding: 0px 20px 20px;
}

::-webkit-details-marker{
   float: right;
   margin-top: 3px;
}

details{
   background: #f6f6f6;
   padding: 20px 20px;
   border-radius: 7px;
   margin-top: 20px;
   font-family: 'Abel', sans-serif;
   font-size: 16px;
   letter-spacing: 1px;
   cursor: pointer;
   transform: translateY(-10%);
}

details summary{
   outline: none;
   font-weight: bold;
   font-size: 16px;
}
details summary:hover {
    color: #cf566a;
}

footer {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 50px;
    width: 100%;
    height: 40px;
    background-color: #28376a;
    color: white;
    text-align: center;
}
footer p{
    padding-top: 10px;
}

@media screen and (max-width: 500px) {
    .header a {
      float: none;
      display: block;
      text-align: left;
    }
    .header-right {
      float: none;
    }
    #logoImage{
    width: 60px;
    height: auto;
    float: left;
   
    }
  }