* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

body {
    background: linear-gradient(134deg, #ff6200, #fcfbff, rgb(0, 255, 55));
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    position: fixed;
    border: 1px solid;
    height: auto;
    min-height: 50vh;
    width: 58vh;
    border-radius: 20px;
    background: linear-gradient(60deg, #1d1d1d, #181414);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#input {
    height: 13vh;
    width: 53vh;
    background-color: #262222;
    border: none;
    box-shadow: 0px 0px 10px 0px white;
    margin: 3vh 0vh;
    border-radius: 20px;
    font-size: 3rem;
    color: white;
    text-align: right;
    padding: 5px 10px;
}

input::placeholder {
    font-size: 3rem;
    color: white;
    margin-right: 10px;
}

button {
    height: 10vh;
    width: 10vh;
    background: transparent;
    border-radius: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: orange;
    font-weight: bolder;
    box-shadow: 0px 0px 9px 2px lightgreen;
    margin: 1.9vh;
}

button:hover {
    color: #6afc6a;
    box-shadow: 0px 0px 9px 2px orange;
}

.name {
    color: #6afc6a;
    box-shadow: 0px 0px 9px 2px orange;
}

.name:hover {
    color: orange;
    box-shadow: 0px 0px 9px 2px #6afc6a;
}

@media (max-width: 390px) {
    body {
        background: #000;
    }

    .container {
        top: 10vh;
        width: 96%;
        box-shadow: 0px 0px 12px 4px white;
    }

    #input {
        height: 13vh;
        width: 96%;
        font-size: 3rem;
    }

    .rows {
        width: 96%;
    }

    button {
        height: 10vh;
        width: 20%;
        margin: 2%;
    }

}