body {
    margin: 0;
    padding: 0;
    background: url(../images/bg.jpg) center center no-repeat;
    background-size: cover;
    text-align: center;
    font-family: "Inter", serif;
    font-weight: normal;
    font-style: normal;
    color: #0f172a;
}

* {
    box-sizing: border-box;
}

img {
    vertical-align: top;
    max-width: 100%;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 30px;
}

h1 {
    font-size: 50px;
    font-weight: 500;
    margin: 0;
}

h2 {
    font-size: 50px;
    font-weight: 500;
    margin: 0 0 60px;
}

h3 {
    font-size: 50px;
    font-weight: 700;
    margin: 0 0 14px;
}

p {
    font-size: 30px;
    font-weight: 500;
    margin: 0;
}

@media screen and (max-width: 640px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        margin: 0 0 5%;
    }

    h3 {
        font-size: 40px;
    }

    p {
        font-size: 20px;
    }
}

@media screen and (max-width: 380px) {
    h1 {
        font-size: 26px;
    }

    h3 {
        font-size: 34px;
    }
}