/* 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 {
  width: 80%;
  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: 800%;
  font-weight: 700;
  margin: 0px;
 font-style: italic;
}

h2 {
  font-size: 25px;
  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: 2%;
  padding-right: 2%;
}

.flex-parent {
  display: flex;
  width: 80%;
  margin: 0 auto;
}

.flex-child {
  width: 50%;
  height: 400px; 
}
.right{
  display:flex;
  width: 40%;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  }
  .smlogo{
    display:flex;
    flex-direction:row;
    gap: 30px;
  }
.left{
  display:flex;
  justify-content: center;
  align-items: center;
}

.bokaknapp a {
  color:black;
  font-size: large;
  text-align: right;
  font-weight: lighter;
  text-decoration: none;
}


  /* 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;
  height:500%;

  /* 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;
  }