@import url('https://fonts.googleapis.com/css2?family=Changa:wght@200;300;400;500;600;700;800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Changa', sans-serif;
}
body {
    background-color: #eee;
}
.page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page .jumbotron {
    width: 80%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.page .jumbotron h1 {
    font-size: 2rem;
}
.page .jumbotron p {
    font-size: 1.2rem;
}
.page .jumbotron .link_div {
    font-size: 1.2rem;
}