body{
    background-color: rgb(43, 42, 41);
    display: flex;
}

.body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100vh;
    min-height: 100vh;
}

.bodyform{
    color: white;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 8px;
    border-color: rgb(75, 74, 72);
    border-width: 2px;
    border-style: solid;
    color: white;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    width: 300px;
    height: 300px;
}
form input[type="submit"] {
    width: 100px;
    border-radius: 3px;
    border-width: 0px;
}

h1{
    font-size: 30px;
}

p{
    font-size: 15px;
}

.rmenu{
    padding-right: 20px;
    width: 300px;
    position: fixed;
    bottom: 10px;
    right: 10px;
}