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

main {
    width: 10000px;
    height: 10000px;
    flex-wrap: wrap;
    display: flex;
}

div {
    width: 100px;
    height: 100px;
    border: 2px solid grey;
}

div:hover {
    border: 10px solid grey;
}

section {
    border-top-left-radius: 5vh;
    border-top-right-radius: 5vh;
    box-shadow: 0 0 2vh black inset;
    margin-left: 60vh;
    height: 30vh;
    width: 80vh;
    position: fixed;
    bottom: 0;
    background-color: rgba(200, 200, 200, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

input {
    height: 20vh;
    width: 20vh;
    border: 0;
    padding: 0;
}
