@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&display=swap');

body {
    margin: 0px;
    color: #202020;
    font-family: 'Titillium Web', sans-serif;
    text-align: center;
    color: #022E3D;
    background-size: 80%;
}

header {
    width: 100%;
    height: auto;
    display: inline-flex;
    justify-content: left;
    background: white;
}

h2 {
    font-size: 50px;
    font-family: 'Josefin Sans', sans-serif;

}

div p {
    font-size: 22px;
    color: #022e3d6e;
    font-family: 'Josefin Sans', sans-serif;
}

div {
    display: block;
}

div img {
    margin-top: 50px;
    height: 436px;
    transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
}

footer {
    text-align: center;
    border-top: solid 1px #2020202a ;
    padding-top: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
}

footer p {
    margin: 5px;
}

footer img {
    height: 25px;
    width: 25px;
    color: #022E3D;
}

.logo {
    padding: 20px 30px;
}

footer a {
    color: #022E3D;
    text-decoration: none;
}

footer a:hover {
    font-weight: 600;
}


@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

@media screen and (max-width:900px) {

    div {
        margin-top: 40px;
    }

    div img {
        height: 236px;
    }

    div h2 {
        font-size: 30px;
    }

    div p {
        font-size: 18px;
    }

    body {
        background-size: 100%;
    }

    header img {
        height: 30px;
    }
}