* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'open sans', sans-serif;
}

body {
    height: 100vh;
    background-color: rgb(220, 220, 220);
    display: flex;
    flex-direction: column;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
}

a:hover {
    color: skyblue;
}

/* HEADER */

header {
    position: relative;
    padding: 0 2rem;
}

.navbar {
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid black;
}

.navbar .logo a {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .links {
    display: flex;
    gap: 2rem;
}


.navbar .toggle-botton {
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.button {
    background-color: black;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
}

.button:hover {
    scale: 1.05;
    color: white;
    background-color: skyblue;
}

.button:active {
    scale: 0.95;
}



/* responsive menu */
.dropdown-menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background: rgba(250, 250, 250, 0.9);
    border-radius: 10px;
    overflow: hidden;
}

.dropdown-menu.open {
    height: 240px;
}

.dropdown-menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu .button {
    width: 100%;
    display: flex;
    justify-content: center;
}


/* RESPONSIVE DESGIN */
@media (max-width:600px) {

    .navbar .links,
    .navbar .button {
        display: none;
    }

    .navbar .toggle-botton {
        display: block;
    }

    .dropdown-menu {
        display: block;
    }
}

@media (max-width:500px) {
    .dropdown-menu {
        left: 2rem;
        width: unset;
    }
}

/* Inehållet för podd */
main h1 {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    font-size: 35px;
}

section {
    background-color: #3f3f3f;
    margin: 30px 200px 50px;
    padding-bottom: 10px;
    padding-top: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}


.podd {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-image: url(https://shorturl.at/NOUY5);
    background-size: cover;
    margin: 0px 10px 0px;
    display: flex;
    justify-content: center;
    padding-top: 200px;
    padding-bottom: 200px;
}

.podd-text {
    margin: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
}

/* RESPONSIVE DESGIN för veckans podd*/
@media (max-width:1200px) {
    section {
        margin: 30px 100px 50px;
    }

    .podd {
        background-size: cover;
        background-position: right;
    }
}

@media (max-width:800px) {
    section {
        margin: 30px 50px 50px;
    }

    .podd {
        background-position: 50%;
    }

}



/* Footer */
footer {
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    background-color: #3f3f3f;
    padding: 60px 10%;
    color: #ffffff;
}

ul {
    list-style: none;
}

.footer-col {
    width: 25%;
}

.footer-col h4 {
    position: relative;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 22px;
    color: #ffffff;
    text-transform: capitalize;
}

ul .kok:not(:last-child) {
    margin-bottom: 8px;
}

ul .kok a {
    display: block;
    font-size: 19px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    transition: 0.4s;
}

ul .kok a:hover {
    color: white;
    padding-left: 10px;
}

.links2 a {
    display: inline-block;
    height: 44px;
    width: 44px;
    color: white;
    background-color: black;
    margin: 0 8px 8px 0;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    transition: 0.4s;
}

.links2 a:hover {
    color: white;
    background-color: skyblue;
}

@media(max-width: 740px) {
    .footer-col {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
}

@media(max-width: 555px) {
    .footer-col {
        width: 100%;
    }
}


button {
    margin-left: 30px;
    margin-top: 5px;
    border-radius: 10px;
    padding: 5px 10px;
    background-color: black;
    color: white;
    font-weight: bold;
    border: none;
    font-size: large;
}

button:hover {
    background-color: skyblue;
}