body{

    margin:0;

    background-image:url("../Images/start screen.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    font-family:monospace;

}

.menu{

    width:420px;

    text-align:center;

    background:rgba(0,0,0,.65);

    padding:40px;

    border:2px solid #2f6f4f;

}

.studio{

    color:#8f8fb5;

    font-size:18px;

    letter-spacing:4px;

}

h1{

    color:#5fe2c1;

    font-size:72px;

    margin-bottom:35px;

}

input{

    width:90%;

    padding:14px;

    margin-bottom:25px;

    background:#111;

    color:white;

    border:2px solid #2f6f4f;

    font-size:18px;

    text-align:center;

}

button{

    width:100%;

    padding:18px;

    margin:12px 0;

    background:#111;

    color:white;

    border:2px solid #2f6f4f;

    font-size:22px;

    cursor:pointer;

    transition:.2s;

}

button:hover{

    transform:scale(1.05);

    border-color:#6ef2b2;

}