@font-face {
    font-family: 'abmontpro-bold';
    src: url('./fonts/ABMontPro-Bold.otf');
}

@font-face {
    font-family: 'abmontpro-demibold';
    src: url('./fonts/ABMontPro-DemiBold.otf');
}

@font-face {
    font-family: 'abmontpro-regular';
    src: url('./fonts/ABMontPro-Regular.otf');
}

* {
    box-sizing: border-box;
}

html,
body {
    padding: 0;
    margin: 0;
}

body {
    background-color: #191E23;
}

section {
    position: relative;
    padding: 80px 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.shape {
    position: absolute;
    left: -141px;
    top: 44px;
}

.football-shape {
    position: absolute;
    right: -34px;
    top: 51px;
}

.basketball-shape {
    position: absolute;
    right: 100px;
    bottom: -48px;
}

.alert-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 335px;
    margin: auto;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.title {
    margin: 16px 0;
    color: #fff;
    font-family: 'abmontpro-bold';
    font-size: 22px;
}

.sub-title {
    color: #A2A9B3;
    font-size: 15px;
    font-family: 'abmontpro-regular';
}

.chat-out {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.chat-ins {
    width: 50px;
    height: 50px;
    background: #01ac2d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {

    section {
        padding: 36px 0;
    }

    .shape {
        left: -136px;
        top: 78px;
    }

    .shape img {
       width: 281px;
    }
    
    .football-shape {
        right: -31px;
        top: 46px;
    }
    
    .football-shape img {
        width: 67px;
    }
    
    .basketball-shape {
        right: -30px;
        bottom: 41px;
    }
    
    .basketball-shape img {
        width: 113px;
    }
}