body {
    background-color: #1a1a1a;
}

h1 {
    font-family: 'jost';
    color: #C7B299;
    display: block;
    font-size: 70px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

h2 {
    font-family: 'jost';
    color: #C7B299;
    display: block;
    font-size: 50px;
}

p {
    color: white;
    display: block;
    font-size: 20px;
    margin-top: 3vh;
    width: 80%;
}

div {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
}

img {
    margin-bottom: 10vh;
    margin-top: 10vh;
    width: 50px;
}

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

    h1 {
        font-size: 150px;
    }

    h2 {
        font-size: 80px;
    }

    p {
        font-size: 40px;
    }

    img {
        width: 80px;
    }
}