* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-family: "Spicy Rice", serif;
    font-size: 26pt;
}

body {
    font-family: "Raleway", sans-serif;
    color: #333;
    background-color: #fff;
}

.main {
    text-align: center;
    padding: 4rem 0;
    background-color: #f5e1f7;
    color: #252a34;
}

button {
    font-family: "Raleway", sans-serif;
    font-weight: bold;
}

footer {
    background-color: #f5e1f7;
    color: #000000;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

header {
    background-color: #f5c2e7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 10px 20px;
    border-bottom: 3px solid #ffffff;

}

.logo {
    font-family: "Spicy Rice", serif;
    color: #252a34;
    font-size: 24pt;
    border: #f5e1f7 solid 3pt;
    border-radius: 15px;
    background-color: #f5e1f7;
    padding: 0px 10px;
    padding-left: 12px;
    text-shadow: 2px 2px 0px #ffffff;
}

.logo a {
    text-decoration: none;
    color: #252a34;
}

nav ul {
    list-style: none;
    display: flex;
    border: #f5e1f7 solid 3pt;
    border-radius: 15px;
    background-color: #f5e1f7;
    padding: 10px 0px;
    list-style: none;
    margin: 10px;
}

nav ul li {
    padding: 0 15px;
    text-align: center;
}

nav ul li a {
    text-decoration: none;
    color: #252a34;
    font-weight: bold;
    transition: .5s;
}

nav ul li a:hover {
    font-size: 12.5pt;
}

.headerIcons {
    display: flex;
    border: #f5e1f7 solid 3pt;
    border-radius: 15px;
    background-color: #f5e1f7;
    align-items: center;
    pposition: relative;
    gap: 5px;
}

.headerIcons .icon {
    padding: 5px 10px;
    font-size: 18pt;
    transition: .5s;
}

.headerIcons .icon:hover {
    font-size: 19pt;
}

.headerIcons a {
    text-decoration: none;
}


@media (max-width: 1100px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: row;
        width: 100%;
        text-align: center;
    }

    nav ul li {
        padding: 0 15px;
        margin: 0px;
    }

    .headerIcons {
        justify-content: center;
    }
}

.search-container {
    width: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    display: none;
    border: 1px solid #f5e1f7;
    border-radius: 10px;
    margin-left: 5px;
    background: white;
    transition: 0.5s;

}

.search-container.expanded {
    width: 200px;
    display: block;
}

.search-input {
    flex-grow: 1;
    border: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 100%;
    padding: 0 10px;
}

#search-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: auto;
}

.search-button {
    background-color: #ef5fb3;
    color: white;
    padding: 10px 10px;
    border: 2px solid #ffffff;
    height: 38px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}


.search-button:hover {
    background-color: #d491af;
}

.results-container {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    z-index: 50;
}

.results-container div {
    padding: 8px;

}

.results-container div:hover {
    background-color: #f0f0f0;
}

.footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #f5e1f7;
    color: #333333;
    text-align: left; 
    padding: 1rem;
    font-family: 'Raleway', sans-serif;
    line-height: 1.5;
    padding: 1rem 200px;
    gap: 15px;
    
}

.footer strong {
    color: #000000; 
}

.footer .column ul {
    list-style-type: none;
}

.footer a {
    text-decoration: none;
    color: inherit;
}

.footer a:hover {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 768px) {
    .footer {
        grid-template-columns: 1fr;
        padding: 1rem; 
    }
}