*, *::before, *::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
:root{
    font-family: Fredoka, sans-serif;
    scroll-behavior: smooth;
    line-height: 1.6;
    --bgfooter: oklch(38.7% 0 0);
    --primary: oklch(0.25 0.01 325);
    --bg: oklch(100 0 100);
    color: var(--primary);
    background: var(--bg);
}
.container {
    max-width: 80rem;
    margin-inline:auto;
    margin-block:0;
    padding-inline:1rem;
    padding-block:0;

}
body > header {
    border-bottom: 0.5rem solid;
    border-image: linear-gradient(to bottom, oklch(0.5999 0 0), oklch(0.8669 0 0)) 50;
    position: fixed;
    background: var(--bg);
    width: 100%;
    padding-top: 0;
    top: 0;
    z-index: 1;
    div{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        h1{
            font-family: "Great Vibes", cursive;
            color: var(--primary);
        }
        img{
            max-width: 5rem;
        }
        nav{
            display: flex;
            justify-content: flex-end;
            ul{
                display: flex;
                flex-direction: row;
                align-items: center;

                li{
                    list-style: none;
                    display: flex;
                    border-bottom: 0.1rem solid transparent;
                    margin: 0 0.1rem;

                    border-left: 0.1rem solid transparent;
                    border-right: 0.1rem solid transparent;
                    &:hover {
                        border-bottom: 0.1rem solid oklch(0.882 0.0588 253.97);
                    }
                    a{
                        padding: 1rem 0.25rem;
                        margin: 0 0.5rem;
                        text-decoration: none;
                        color: var(--primary);
                        &:hover{
                            color: var(--primary);
                        }
                    }
                }
            }
        }
    }
}
footer {
    margin-top: 4rem;
    padding: 2rem 0;

    background-color: oklch(38.7% 0 0);

    text-align: center;
    color: oklch(95% 0 0);
    address {
        margin-bottom: 1rem;
        font-style: normal;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center ;
        & p {
            color: oklch(95% 0 0);
            text-decoration: none;
            transition: color 0.2s ease;
            margin: 1rem;
            &:first-child {
                font-weight: bold;
                text-transform: uppercase;
            }
        }
    }
    small {
        font-size: 0.875rem;
        color: oklch(80% 0 0);
    }
}