@charset "utf-8";
/* Media Querys */
/* Mobil */
@media only screen and (max-width: 600px) {
  .navbar {
  	border-style: outset none none none; 
    bottom: 0;
    width: 100vw;
    height: 5rem;
  }
  .logo {
    display: none;
  }
  .navbar-nav {
    flex-direction: row;
  }
  .nav-link {
    justify-content: center;
  }
  main {
    margin: 0;
  }
  h3{
    margin: 4px 0 0 35px;
  }
  .box{
    font-size: 0.8em;
  }
  .bmidover{
    height: 100vh;
  }
  .fsize{
  font-size: 0.6em
  }
  .responsive {
    width: 50%;
  }
  .pet{
    margin: 15px 5% 25px 5%;
  }
  .tline{
    margin-left: 5%
  }
}
/* Dektop */
@media only screen and (min-width: 600px) {
  .navbar {
    top: 0;
    width: 5rem;
    height: 100vh;
  }
  .navbar:hover {
    width: 16rem;
  }
  .navbar:hover .link-text {
    display: inline;
  }
  .navbar:hover .logo img
  {
    margin-left: 11rem;
  }
  .navbar:hover .logo-text
  {
    left: 0px;
  }
}