*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

main{
    width: 350px;
    height: 350px;
    background-color: #00142c;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-direction: column;
    font-weight: 500;
}

button{
    outline: none;
    margin-top: 20px;
    width: 100%;
    height: 50px;
    background-color: #0f9;
    color: #00142c;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

button:hover{
    filter: brightness(0.8);
}