/* Återställ standardmarginaler och fyllning */
body, h1, h2, p {
    margin: 0;
    padding: 0;
    font-family: "Copperplate", Fantasy;
    font-size: 16px;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Skapa en enkel headerstil */
header {
    background-color: #009688;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Huvudinnehåll som expanderar för att pusha ner footern */
main {
    flex: 1;
    padding: 20px;
}

.contact h2 {
    color: #009688;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.contact p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact a {
    color: #009688;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}
/* Skapa en enkel sektion för kontaktinformation */
.contact {
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.text-container {
    display: flex;
}

@keyframes filter-effect {
    0% { filter: blur(0) hue-rotate(0deg); }
    50% { filter: blur(5px) hue-rotate(180deg); }
    100% { filter: blur(0) hue-rotate(360deg); }
}

.hoppande-text {
    animation: filter-effect 4s infinite;
}

.table-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    gap: 20px;
}

.left-table, .right-table {
    width: 48%;
    min-width: 300px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.info-info {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1001;
    padding: 10px;
    background-color: #ffe6e6;
    border: 1px solid #ff0000;
    border-radius: 5px;
    color: #ff0000;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    text-align: left;
    overflow-wrap: break-word;
}

/* Skapa en enkel footerstil */
footer {
    background-color: #009688;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
}

/* Responsiv design */
@media (max-width: 768px) {
    .table-container {
        flex-direction: column;
        gap: 10px;
    }

    .left-table, .right-table {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hoppande-text {
        font-size: 18px;
    }
}