* {
    margin: 0;
}

body {
    background: rgb(0,91,255);
    background: linear-gradient(0deg, rgb(0, 48, 136) 0%,  rgb(64, 120, 218)  100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Segoe UI', sans-serif;
    color: white;
    text-align: center;
}

.wrapper {
    margin: auto;
    width: 60%;
}

.wrapper img {
    text-align: center;
    width: 15vw;
    margin-top: 4vw;
}

h1 {
    margin-top: 4vw;
    font-size: 72px;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

p {
    margin-top: 1vw;
    font-size: 26px;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

a {
    color: white;
}

@media only screen and (max-width: 800px) {

    .wrapper {
        width: 80%;
    }

    .wrapper img {
        width: 30vw;
        margin-top: 10vw;
    }

    h1 {
        font-size: 48px;
    }

    p {
        font-size: 18px;
        margin-top: 3vw;
    }
}