* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: rgb(190, 208, 216);
}

header {
    width: 100%;
    height: 100vh;
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

header .container {
    width: 200px;
    height: 340px;
    padding: 15px;
    background-color: hsl(0, 0%, 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


header .container h2 {
    font-size: 16px;
    padding: 20px 0 10px 0;
    background-color: #ffffff;
    text-align: center;
}

header .container h4 {
    background-color: #ffffff;
    color: gray;
    text-align: center;
    line-height: 20px;
    font-size: 11px;
    font-weight: 400;
}