* {
    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 altså merch*/


.merch h1 {
    text-align: center;
    font-size: 40px;
    margin-top: 30px;
    font-size: 35px;
}

.men {
    margin: 50px 200px 50px;
    display: flex;
    justify-content: space-between;
}

.woman {
    margin: 50px 200px 100px;
    display: flex;
    justify-content: space-between;
}

.bild {
    background-color: rgba(1, 21, 21, 0.3);
    padding-bottom: 20px;
    border-radius: 10px;
    text-align: center;
}

.men .bild h2 {
    color: blue;
}

.woman .bild h2 {
    color: pink;
}


.men .bild h3:hover {
    padding-left: 10px;
    cursor: pointer;
}

.woman .bild h3:hover {
    padding-left: 10px;
    cursor: pointer;
}



/* responsive degsin för shopen */
@media (max-width:900px) {
    .men {
        flex-direction: column;
        align-items: center;
    }

    .woman {
        flex-direction: column;
        align-items: center;
    }

    .bild {
        width: 300px;
        margin-bottom: 20px;
    }
}



/* 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;
}