*{
    font-family: "Source Sans Pro", sans-serif;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
    transition: .2s all;
    margin: 0;
}

body{
    text-align: center;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(assets/Element3.png);
    background-repeat: repeat;
    height: 100vh;
}

body>div{
    width: 90%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px 0px rgba(0,0,0,0.3);
    padding: 2em;
}

h3{
    font-weight: 500;
    font-size: 20px;
    color: #333;
    line-height: 36px;
    margin-bottom: 1em;
}

a{
    width: 80%;
    max-width: 20em;
    height: 50px;
    padding: .7em 2em;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: white;
    background-color: #DD5277;
}

a:active, a:focus, a:hover{
    outline: none;
}

a:hover, a:focus{
    background-color: #c9385e;
}

a:active{
    background-color: #ff2a63;
}