:root{
    --color-1: #44281d;
    --color-2: #e4a788;
    --color-3: #f0e14a;
    --color-4: #97ce4c;
    --color-5: #9ac5e8;
}

@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
}

*{
    box-sizing: border-box;
}

@font-face {
    font-family: WubbaLubbaDubDub;
    src: url(fonts/WubbaLubbaDubDub.ttf);
}


body{
    font-family: WubbaLubbaDubDub;
    font-weight: bold;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-5);
    color: var(--color-1);
}

.section{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.container{
    width: 275px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: var(--color-4);
    border: 2px solid var(--color-1);
    color: var(--color-1);
}

.image-container{
    width: 200px;
    height: 200px;
}

.image-container > img{
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-1);
    border-radius: 10px;
}

.btns{
    margin: 10px;
    position: fixed;
    bottom: 50px;
    display: flex;
    gap: 10px;
    color: var(--color-1);
}

button{
    font-family: WubbaLubbaDubDub;
    font-weight: bold;
    font-size: large;
    width: 100px;
    background-color: var(--color-1);
    border-radius: 4px;
    border: 1px solid black;
    color: beige;
}

button:hover{
    cursor: pointer;
}

a:hover {
    cursor: pointer;
}

.search-container{
    margin: 5px 0;
}

#search{
    height: 28px;
}

.details{
    width:75%;
}

footer {
    width: 100%;
    height: 10vh;
    text-align: center;
    color: var(--color-1);
}
