body {
    background-color: black;
}

.name_title {
    text-align: center;
    color: white;
    font-size: 80px;
    text-shadow: 0px 0px 10px white;
}

.input_box {
    margin-top: 45px;
}

.input_box input {
    padding: 15px 30px;
    border-radius: 10px;
    color: black;
    text-align: right;
    font-size: 20px;
}

.main_container {
    text-align: center;
    margin-top: 100px;
    width: 350px;
    height: 450px;
    border: 1px solid white;
    margin: 0 auto;
    margin-top: 50px;
    box-shadow: 0px 0px 20px white;
    border-radius: 10px;

}

.container {
    margin-top: 10px;
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button {
    padding: 15px 25px;
    margin: 5px;
    border-radius: 100%;
    background-color: chartreuse;
    font-size: 18px;
    border: none;
}

.operator {
    padding: 15px 25px;
    margin: 5px;
    border-radius: 10px;
    background-color: red;
    color: white;
    font-size: 20px;
    border: none;
    border-radius: 100%;
}

.button:hover {
    background-color: orange;
}

@media (max-width: 500px){
    .main_container {
        width: 100%;
    }
    .input_box .input{
        width: 100%;
    }
}