@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
@import url('https://use.fontawesome.com/releases/v5.15.1/css/all.css');

body {
    background: url(../bilder/wp1.jpg);
}

.mobile-navbar {
    background: linear-gradient(#00A99D, #00545d);
   
    display: flex;
    justify-content: space-between;
    padding: 1rem;
  }
  
  .mobile-navbar a {
    color: #fff;
    font-size: 1.5rem;
    float: left;
    text-decoration: none;
  }

  .video {
    text-align: center;
    margin: auto;
}

  .active {
    text-shadow: -1px -1px 0 #084541, 1px -1px 0 #084541, -1px 1px 0 #084541, 1px 1px 0 #19c4b8;
  }

  @media only screen and (max-width: 768px) {
    .mobile-navbar {
      flex-direction: column;
    }
    .mobile-navbar a {
      border-top: 1px solid #fff;
      width: 100%;
    }
  }

body {
  font-family: 'Open Sans', sans-serif;
}

.mobile-page {
  background-color: #f2f2f2;
  padding: 2rem;
  text-align: center;
}

.page-header {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.responsive-img {
    height: auto;
    max-width: 100%;
  }
  
  @media only screen and (max-width: 768px) {
    .responsive-img {
      width: 100%;
    }
  }
  

.page-description {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  width: 100%;
}

button {
  color: #fbfcfd;
  padding: 10px 25px;
  background: #00A99D;
  border: 1px solid #fff;
  border-radius: 20px;
  outline: none;
  cursor: pointer;
  padding: 1rem 2rem;
}

button i {
  margin-left: 1rem;
  margin-right: 1rem;
}