@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    padding: 0;
    margin: 0;

    background-image: url(../assets/img/bg.png);
    background-repeat: no-repeat;
    background-size: cover;


    display: grid;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    font-family: 'Inter', sans-serif;
    overflow: hidden;

}

@media (max-width: 900px) {
    body {
        background-image: url(../assets/img/bg-mobile.png);
    }
}

body::after {
    content: '';
    content: '';
    width: 100%;
    display: block;
    background: linear-gradient(45deg, #000000e6 20%, transparent 100%);
    height: 100vh;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;

}

section {
    max-width: 300px;
    z-index: 1;
}

@media (min-width: 900px) {
    section {
        max-width: 100%;
    }
}

h1 {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 24.2px;
    text-align: center;
}

h1 span {
    color: rgba(250, 238, 18, 1)
}

p {
    font-size: 14px;
    font-weight: 400;
    line-height: 14.52px;
    text-align: center;
    color: #fff;
}

button {
    background: rgba(250, 238, 18, 1);
    color: #000;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 6px;
    border: 0;
    font-size: 15px;
    margin-top: 10px;
    cursor: pointer;
}

img {
    width: 100%;
    margin-bottom: 30px;
}


@media (min-width: 900px) {

    img {
        width: 350px;
    }

}

.footer {
    color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

.bg-effect {
    content: '';
    background: linear-gradient(21deg, #03245c -40%, #00000000 60%);
    width: 500px;
    height: 500px;
    position: absolute;
    left: -150px;
    bottom: -80px;
    z-index: 1;
    transform: rotate(42deg);
}

@media (max-width: 900px) {

    .bg-effect {
        width: 350px;
    }
}