*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: linear-Gradient(90deg, rgb(15, 51, 144) 0%, rgb(9, 22, 83) 100%);
}

.main-block{
    width: 99vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    gap: 20px;
    color: #ffffff;
    padding: 30px;
}

.pic{
    width: 400px;
}

h1{
    text-decoration: none;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    max-width: 600px;
}

.text-footer{
    position: absolute;
    margin: 0 auto;
    bottom: 50px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}

.main-block img{
    max-width: 400px;
}

@media (max-width: 500px) {
    .pic,
    h1,
    .text-footer{
        width: 90%;
    }

    h1,
    .text-footer{
        font-size: 16px;
    }
}