/* Mobile view */
@media screen and (min-width: 600px) {
  .page-mobile {
    display: none;
  }
}

body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  text-align: center;
}


.container {
  width: 80%;
  margin: 0 auto;
  padding: 50px 0;
}
/* logo inställningnar */
.logocontainer {
  margin: 0 auto;
}
.logo{
  font-family: 'Taviraj', serif;
  font-size: 10vw;
  font-weight:lighter;
  text-shadow: 2px 2px #636262; 
}

  
  
  /* Här är styling som gäller för rubriker och text */
  h1 {
    color: rgb(255, 255, 255);
    font-size: 65px;
    font-weight: 700;
    margin: 0px;
   font-style: italic;
  }
  
  h2 {
    font-size:200%;
    font-family: 'Open Sans Condensed', sans-serif;
    text-align: center;
    font-weight: 100;
  }
  
  h3 {
    font-size: 25px;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight:normal;
  }
  
  p {
    font-size: 20px;
    font-weight: 200;
    line-height: 1.5;
  }
 
  
  .menulinks a{
    font-size: 2VW;
    text-shadow: 2px 2px #3a3a3a;
    text-decoration: none; 
    font-weight: 400;
    color:#ffffff;
    padding-left: 3%;
    padding-right: 3%;
  }
  
  .flex-parent {
    display: flex;
    width: 80%;
    margin: 0 auto;
    
  }
  
  .right{
  display:flex;
  width: 40%;
  flex-direction: column;
  align-items:center;
  }
  .smlogo{
    display:flex;
    flex-direction:row;
    gap: 30px;
  }
  .left{
    display:flex;
    width: 60%;
    justify-content: center;
    align-items: center;
    font-size:5vw;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }
  
  .bokaknapp a {
    color:black;
    font-size:medium;
    text-align: right;
    font-weight: lighter;
    text-decoration: none;
  }

  .bilden{
    max-width: 100%;
    height: auto;
    padding-bottom: 20px;
  }
  
    /* Här är styling som gäller för toppen på sidan */
    header {
      /* En ny grej är att vi nu lägger in bilden i CSS
      som en bakgrund, här redigerar du den. */
      background-image: url("./images/naglar.jpg");
      background-repeat: no-repeat;
      /* Styr bilden */
      background-size: 100%;
      margin-top: 20px;
    
      /* Styr bilden */
    background-position: center;
    }
    
  /* Styling för knappen */
  .bokaknapp {
    border: rgb(1, 1, 1) solid;
  
    /* Gör att knappen får runda hörn */
    border-radius: 40px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 25px;
    display: inline-block;
    width: 25%;
    background-color: rgb(235 227 232 / 64%); 
  }
  
  
  /* Styling för "about-us"-sektionen */
  .about-us {
    background-color: #e9e9e9;
  }
  
  /* Styling för footern på sidan */
  footer {
    background-color: #151515;
    color: white;
  }
  .container a{
    text-decoration: none;
    color: #411853;
  }
  .kontakt{
    text-align: center;
    }