*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    transition: 0.1s;
}

body
{
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    bottom:0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat',sans-serif;
    background-color: #003F91;
    color:white;
    padding:20px;
}

.box
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    text-align: center;
}

img
{
    width: 100px;
    user-select: none;
    pointer-events: none;
    margin-bottom: 10px;
}

h1
{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

p
{
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 5px;
}

a{
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
    color:#003F91;
    background-color: white;
    padding:3px;
    padding-left:7px;
    padding-right: 7px;
    text-decoration: none;
    border-radius:5px;
    user-select: none;
    cursor: pointer;
    margin-top: 10px;
}

a:active
{
    transform: scale(0.95);
    opacity: 0.8;
}