* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: sans-serif;
    background-color: rgba(63, 62, 123, 255);
}

.box-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.box {
    width: 13%;
    background-color: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin: 100px 0;
}

button {
    display: flex;
    padding: 8px 16px;
    border: none;
    background: #eee;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

button:hover {
    background: #ccc;
}

.menu-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.menu-search {
    position: fixed;
    left: 0;
    width: 400px;
    height: 100%;
    background-color: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.menu-search.active {
    transform: translateX(0);
}

.menu-run {
    position: fixed;
    left: 0;
    width: 400px;
    height: 100%;
    background-color: white;
    transform: translateX(-200%);
    transition: transform 0.3s ease;
}

.menu-run.active {
    transform: translateX(0);
}

.menu-run p {
    margin-bottom: 10px;
    font-weight: 500;
    font-family: sans-serif;
}

.menu-search p {
    margin-bottom: 10px;
    font-weight: 500;
    font-family: sans-serif;
}