@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Dosis:wght@200..800&family=Nanum+Myeongjo&family=Zen+Dots&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Parkinsans:wght@300..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Shadows+Into+Light+Two&family=Tuffy:ital,wght@0,400;0,700;1,400;1,700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
body {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
} 
h1, h2, h3, h4 {
    font-family: "Zen Dots", serif;
     font-size: 40px;
}
header {
    background-color: rgb(108, 121, 117);
    min-height: 200px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

header h1 {
    font-family: 'Audiowide', sans-serif;
    font-size: 70px;
}

.Axi{
    color: rgb(0, 0, 156);
}

.banner-image {
    background-image: url("../pictures/computer-8779036_1280.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background-attachment: fixed;
}
.banner-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.7);
}
.banner-text {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 20px;
}
.banner-text h2{
    color: white;
    font-size: 60px;
    text-align: center;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.8);
 
}
.banner-text h3{
    color: white;
    font-size: 30px;
    text-align: center;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.8);
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 200;
    font-style: italic;
    margin-left: 50px;
    margin-right: 50px;
 
}
.content2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(190, 188, 190);
}
.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 50px;
}
.background-grey{
    background-color: grey;
    height: 200px;
    border-radius: 10%;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.background-grey:hover {
    transform: scale(1.05);
    cursor: pointer;
}
.background-grey img {
    border-radius: 10px;
}
.content2 h2 {
    font-size: 30px;
    text-align: center;
    color: black;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-top: 60px;
    margin-bottom: 10px;
}
.row-content img {
    max-width: 30%;
    min-width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}
.row-content {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 50px;
    background-color: rgb(33, 43, 40);
    color: white;
    padding-top: 60px;
    padding-bottom: 60px;
}

.row-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.row-content2 {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 100px auto;
    align-items: stretch;
}
.reverse {
    flex-direction: row-reverse;
}

.box-div {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    font-size: larger;
  
}

.box-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.box-div:nth-child(2) {
    background-color: #dbe7f1; /* ljusblå som i exemplet */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box-div h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.box-div h5 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    padding: 0% 20px;
}

/* Lista animeras snyggt in från vänster */
.list ul li {
    /* margin-left: -100px; */
    transition: margin-left 0.3s ease, opacity 0.3s ease;
    margin-top: 10px;
    font-size: larger;
}

/* Knappstil */
.button {
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid white;
    cursor: pointer;
    display: block;
    margin: 20px auto 0 auto; /* top auto bottom auto */
    width: 200px;
    text-align: center;
}
.button:hover {
    background-color: white;
    color: rgb(33, 43, 40);
    transition: background-color 0.3s ease;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    padding: 0 5% 5% 5%;
}
.column h3 {
    font-size: 40px;
}

.column h5 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    padding: 0% 20px;
}
.box-div h5 a {
    color: black;
    text-decoration: none;
}
.box-div h5 a:hover {
    color: #333;
    text-decoration: underline;
}

/* .sjotid {
    background-color: #808080;
    text-align: center;
    padding-top: 100px;
    font-size: 30px;
} */
/* .sjotid h2 {
    margin: 0;
} */
/* .sjotid img {
    margin-top: 100px;
    width: 50%;
    margin-bottom: 100px;
    transition: transform 0.3s ease-in-out;
}
.sjotid img:hover {
    transform: scale(1.05);
} */
footer {
    background-color: rgb(108, 121, 117);
    display: flex;
    flex-direction: row;
}
.footer-text {
    max-width: 50%;
}
.footer-text2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.footer-text h1 {
    font-family: 'Audiowide', sans-serif;
}
.footer-pic {
    width: 200px;
}
.footer-pic img {
    width: 200px;
    margin-top: 80px;
}