:root {
    --primary-color: #ff0000;
    --secondary-color: #ffffff;
    --background-color: #000000;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
}

body {
    background-color: var(--background-color);
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5rem;
    color: white;
    padding-top: 5rem;
    width: 100vw;
    height: 100vh;
}

.input {
    width: 10rem;
    height: 2rem;
    text-align: center;
    background-color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 16px;
    outline: none;
}

    .input::placeholder {
        color: var(--secondary-color);
    }

.inputs {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    height: 80%;
}

.container {
    border: 1px solid var(--secondary-color);
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
    overflow-y: auto;
}

    .container > div {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

        .container > div > img {
            width: 10rem;
            height: 10rem;
            gap: 1rem;
        }