@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 10px;
    font-family: 'Lato', sans-serif;
}

body{
    background: white;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	max-width:100vw;
	overflow-x: hidden;
}

img{
    width: 80vw;
}

h3{
    font-size: 3.5rem;
    letter-spacing: 1.3rem;
    text-align: center;
    margin-bottom: 10vh;
}

p{
    font-size: 2.5rem;
    letter-spacing: 1.3rem;
    text-align: center;
    line-height: 4rem;
}
span{
    font-size: 3rem;
    letter-spacing: 1.3rem;
    text-align: center;
    line-height: 6rem;
    color: #1071a5;
    font-weight: 800;
}

a{
    text-decoration: none;
    color: #a79e7e;
    font-size: 2rem;
    font-weight: 600;
	letter-spacing: normal;
}

@keyframes bg-grad-animation{
	0%{
		background-position: left ;
	}

	100%{
		background-position: right ;
	}
}

@media screen and (min-width: 1000px){
    img{width: 40vw;}
	
	a{letter-spacing: 3px;
	font-size: 3rem;}
	
	p{line-height: 4.5rem;}
}
