@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin:0;
  padding:0;
  box-sizing: border-box;
}

body {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    margin: 0 0 0 0 ;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }

section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hela{
  scroll-snap-type: y mandatory ;
  overflow-y: scroll;
  scrollbar-width: none; /* För Firefox */
  -ms-overflow-style: none; /* För Internet Explorer och Edge */
  height: 100vh;
}

.hela::-webkit-scrollbar {
  display: none; /* För Chrome, Safari och andra WebKit-baserade webbläsare */
}
.one {
  background-color: black;
  scroll-snap-align: start;
}

.namn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.title:hover, .logo:   {  
  color: inherit;
  text-decoration: none;
}

.title, .logo {
    font-size: 5vw; 
  }

.title {
    font-size: 75px;
    color: white;
    margin-right: 10px;
  }
  
  .logo {
    font-size: 75px;
    background-color:goldenrod;
    color:black;
    text-decoration:none;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 12px;
    cursor: default;
    font-weight: 600;
  }

.two {
  background-color:darkred;
  scroll-snap-align: start;
}


nav {
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}


.carousel-inner {
    position: relative; 
    width: 100%; 
    height: 100vh; 
}

.carousel-inner .item img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.carousel {
    margin: 0 auto; 
}

.carousel-title {
    position: absolute;
    margin: auto;
    bottom: 55vh;
    top: 45vh;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}