@font-face {
    font-family: "Brand";
    src: url("fonts/Brandenburg.ttf") format("truetype");
}

@font-face {
    font-family: "Gothic";
    src: url("fonts/IcelandWinterstorm_PERSONAL_USE_ONLY.otf") format("truetype");
}

*{
    margin: 0%;
    padding: 0%;
}


body{
    background-color: #0f172a;
    margin: 0;
    height: 100vh;          
    display: flex;
    justify-content: center;  
    align-items: center;      
}

.Menu{
    width: 800px;
    height: 800px;
    text-align: center;

}

.title{
    color: white;
    font-family: "Brand", sans-serif;
    font-size: 200px;
    font-weight: 400;
    margin-bottom: 100px;
}

.button {
    width: 400px;
    height: 70px;
    background: #4f46e5;
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    font-size: 25px;
    font-weight: 400;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    cursor: pointer;
    transition: 0.25s;
}

.button:hover {
    background: #6366f1;
    box-shadow: 0 0 12px #6366f1;
}



.input {
    width: 345px;
    height: 50px;
    background: #4f46e5;
    color: rgb(206, 207, 255);
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    text-align: center;
    font-size: 25px;
    font-weight: 400;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    cursor: pointer;
    transition: 0.25s;
}

.input::placeholder {
    color: rgb(132, 134, 255);;  
    opacity: 1;     
}

.input:hover {
    background: #6366f1;
    box-shadow: 0 0 12px #6366f1;
}