@font-face {
    font-family: 'poly_sans';
    src: url('fonts/PolySans-Median.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'poly_sans_normal';
    src: url('fonts/PolySans-Neutral.woff') format('woff'),
        url('fonts/PolySans-Neutral.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'poly_sans_normal';
}
.container{
    width: 100%;
    height: 100vh;
    background-color: #11111F;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.fixed_text{
    position: absolute;
    bottom: 46px;
    right: 56px;
}
.fixed_text p{
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-family: 'poly_sans_normal';
}
.container img{
    width: 241px;
}
@media only screen and (max-width: 575px) {
    .container img{
        width: 155px;
    }
    .fixed_text{
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 28px;
    }
    .fixed_text p{
        font-size: 14px;
    }
}

@media only screen and (max-width: 991px) {
    .fixed_text{
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 40px;
    }
}