@font-face {
    font-family: 'RoobertPRO-Medium';
    src: url('../fonts/RoobertPRO-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'RoobertPRO-Regular';
    src: url('../fonts/RoobertPRO-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body{
    margin: 0;
    padding: 0;

    height: 100vh;
    background: url('../img/bg.jpeg');
    background-size: cover;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 100px;
    box-sizing: border-box;
    height: 100vh;
    width: 100%;
}

[class*="__container"]{
    max-width: 1200px;
    margin: 0px auto;
}

h1{
    font-size: 56px;
    font-family: RoobertPRO-Medium;
    color: #fff;
    margin: 0;
}

h1 span{
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #56cde7, #5ce5a0);
    -webkit-background-clip: text;
    background-clip: text;
}

p{
    margin: 32px 0px;
    font-size: 21px;
    color: #fff;
    font-family: RoobertPRO-Regular;
    width: 420px;
}

.button{
    background-image: linear-gradient(270deg, #5ce5a0, #56cde7);
    border-radius: 12px;
    padding: 17px 24px;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    color: #04000c;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: RoobertPRO-Regular;
    cursor: pointer;
    transition: 1s;
    text-decoration: none;
}

.button:hover{
    background: linear-gradient(270deg, #6FE55C -2.05%, #56E7BB 113.6%);
}

.header__container,
.main__container,
.footer__container {
    width: 100%;
    text-align: left;
}

@media (max-width: 425px) {
    [class*="__container"]{
        max-width: 300px;
        margin: 0px auto;
    }

    .wrapper{
        padding-bottom: 50px;
    }

    h1{
        font-size: 36px;
    }

    p{
        font-size: 16px;
        width: 250px;
    }

    .button{
        font-size: 14px;
    }
}