body {
    background-color: #202124;
    font-family: sans-serif;
    color: aliceblue;
}

.mainContainer {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mainImage {
    max-width: 100%; 
    height: auto;
}

.mainContainerH {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mainInput {
    margin: 10px;
    width: 300px;
    border: none;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
}

.mainText {
    font-size: 30px;
}

.mainButton {
    margin: 25px;
    width: 350px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background-color: #A6A6A7;
}