body {
    margin: 0;
    padding: 0;
    background: url('Images/klaffi.png') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
}

/* Header bar styling 
header {
    background-color: tomato;
    color: white;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
}

header a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

header a:hover {
    color: #ffee00; 
}
*/
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: tomato;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
    
li a:hover {
    background-color: #111;
}

/* Add some padding to content to avoid overlap with header */
main {
    padding-top: 70px;
}

/* Content styling */
.content {
    text-align: center;
    color: white;
    padding: 20px;
    background-color: rgba(255, 99, 71, 0.8); /* Tomato-like background with transparency */
    border-radius: 10px;
    margin: 20px auto;
    max-width: 90%;
}

h1 {
    color: white;
}

p {
    color: #FFE4E1; /* Light pink to match tomato theme */
}

/* Center the container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Flex container for image and text */
.content2 {
    display: flex;
    align-items: center;
    background-color: rgba(255, 99, 71, 0.8); /* Tomato-like background with transparency */
    border-radius: 10px;
    margin:1%;
    color: white;
    text-align: center;
}

/* Style for the image */
.imageLeft {
    width: 40%; /* Set image width */
    height: auto;
    margin-right: 5%; /* Space between image and text */
    border-radius: 10px;
    margin-left: 10%;
    margin-top: 1%;
    margin-bottom: 3%;
}

.imageRight {
    width: 40%; /* Set image width */
    height: auto;
    margin-left: 5%; /* Space between image and text */
    border-radius: 10px;
    margin-right: 10%;
    margin-top: 1%;
    margin-bottom: 3%;
}
/* Style for the text */
.text {
    font-size: 200%;
    background-color:tomato;
    border-radius: 10px;
    margin:auto;
    width: 60%;
    padding: 10%;
    align-self: center;
    text-align: center;
    color: white;
}

.text2 {
    font-size: 200%;
    background-color:tomato;
    border-radius: 10px;
    margin:auto;
    width: 60%;
    padding: 10%;
    align-self: center;
    text-align: center;
    color: white;
}

.Top {
width: 100%;
height: 10px;
background-color: tomato;
}
