
*, *:before, &:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #000;

}

.bg {
    background: url("./bg.png") center no-repeat;
    height: 100vh;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.bg h1 {
    font-size: 70px;
    font-weight: bold;
    line-height: 158px;
}

.bg h2 {
    font-size: 52px;
    font-weight: lighter;
    line-height: 1;
    margin-bottom: 60px;
}

.logo {
    width: 134px;
    height: 134px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 369px;
    height: 72px;
    border-radius: 10px;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
}
.footer {
    position: fixed;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    text-align: center;
}

@media screen and (max-width: 576px) {
    .bg h1 {
        font-size: 52px;
        line-height: 120px;
    }

    .bg h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .button {
        width: 320px;
        height: 60px;
    }
}