:root {
    --main-background-color: #003459;
}

body{
    font-family: Verdana, Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: var(--main-background-color);
    font-size: 18px;

}



.center {
    position: absolute;
    width: 50%;
    transform: translate(-50%,-50%);
    min-width: 500px;
    top: 50%;
    left: 50%;
    background-color: wheat;
    padding: 50px 10px;
    border-radius: 5px;
    display: grid;
    justify-items: safe center;
}

.myText {
    width: 200px;
    height: 120px;
    color: var(--main-background-color);
    border: 3px solid red;
}

input[type="text"]{
    width: 200px;
    font-weight: 600;
    color: #003459;
    padding: 50px 0;
    text-align: center;
    margin-top: 30px;
    border-radius: 5px;
    border: 2px solid #202020;
    font-size: 50px;
}

input[type="button"]{
    width: 200px;
    padding: 15px 0;
    border-radius: 5px;
    background-color: var(--main-background-color);
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    outline: none;
}