body {
    background-color: #171717;
}

.button-options {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100%;

    border-bottom: 2px double  #202020;
}

button {
    border: none;

    color: #fff;
    background-color: #181818;

    box-shadow: 0 2px 5px rgba(0,0,0,0.3);

    width: 50%;
    height: 100%;
}

input {
    display: flex;
    justify-content: center;
    align-items: center;

    border: none;

    color: #fff;
    background-color: #181818;

    box-shadow: 0 2px 5px rgba(0,0,0,0.3);

    outline: none;

    width: 100%;
    height: 100%;

    border: none;
    border-bottom: 2px double  #202020;
}

input:focus{
    border-bottom: 2px double  rgb(63, 224, 184);
}

button:hover {
    border: none;

    color: #fff;
    background-color: rgb(152, 222, 235);

    box-shadow: 0 2px 5px rgba(152, 222, 235, 0.3);
}

button:active {
    border: none;

    color: #fff;
    background-color: rgb(63, 224, 184);

    box-shadow: 0 2px 5px rgba(152, 222, 235, 0.3);
}

.main {
    justify-content: center;

    padding: 10px;
    position: fixed;
    display: grid;
    grid-template-rows: repeat(3, 0.2fr);
    gap: 20px;
    top: 12.5%;
    left: 25%;
    width: 50%;
    height: 75%;
    background-color: #181818;
    color: white;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
}