@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@media screen and (max-width: 768px) {
    .box p {
        margin-bottom: 100%;
    }
}

body {
    margin: 0px;
    height: 100vh;
    background-color: #1e1e1e;
    color: #fff;
    font-family: "Inter", sans-serif;
}

.main {
    width:fit-content;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: fit-content;
    padding: 25px;
    background-color: #1e1e1e;
    border: 1px solid #fff;
    border-radius: 25px;
}   

.search-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.search {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pallete {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
}

.box {
    display: flex;
    justify-content: center;
    align-items: end;
    text-align: center;
    height: 100%;
    width:100%;
}

.box p {
    width: fit-content;
    background-color: #1e1e1e;
    padding: 5px;
    border-radius: 10px;
}
