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

body{

    font-family:Segoe UI,Arial,sans-serif;

    background:#edf3f8;

    color:#24364b;

}

header {
    background: linear-gradient(135deg,#163a63,#255c9c);
    padding: 70px 20px;
    text-align: center;
}
.whitetext {
			    color:#FDFDFD;
}
.logo {
    background: rgba(253,253,253,1);
    padding: 28px;
    border-radius: 24px;

    width: 800px;
    max-width: 60%;

    box-shadow:
        0 10px 35px rgba(0,0,0,.35);

    margin-bottom: 30px;
}

h1{

    font-size:52px;

    letter-spacing:4px;

    margin-bottom:12px;
		    color:#FDFDFD;
}

header p{

    font-size:20px;

    opacity:.9;
}

main{

    max-width:1000px;

    margin:auto;

    padding:70px 30px;
}

.content{

    background:white;

    border-radius:14px;

    padding:40px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.content h2{

    color:#174c8f;

    margin-bottom:20px;
}

.content p{

    line-height:1.8;

    margin-bottom:18px;
}

footer{

    text-align:center;

    padding:30px;

    background:#173f72;

    color:white;
}