@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
}

body {
    text-align: center;
    height: 100vh;
}

div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80%;
}

h1 {
    font-size: 70px;
    margin-bottom: 30px;
    font-family: ubuntu;
}

h2 {
    font-size: 35px;
    font-family: jura;
}

.color {
    margin-bottom: 20px;
}

button {
    font-size:25px;
    font-family: jura;
	color:black;
	background-color:white;
	box-shadow: 3px 4px 0px 0px black;
	border-radius: 30px;
	padding:2px 25px;
}

button:active {
	position: relative;
    top: 2px;
    left: 1px;
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 40px;
        position: absolute;
        top: 10%; 
    }

    h2 {
        width: 80%;
        font-size: 20px;
    }
}