*{
    margin: 0;
    padding: 0;
}

@font-face {
    src: url(../fonts/Product-Sans/Product\ Sans\ Regular.ttf);
    font-family: 'Product-Sans-Regular';
    font-weight: normal;
}

body{
    font-family: 'Product-Sans-Regular';
    background-color: #202020;
    color:#fff;
}

a{
    text-decoration: none;
    color: #fff;
    cursor:pointer;
}

.main-text{
    margin-top: 100px;
}

.main-text h1{
    font-size: 100px;
}

.main-button h2{
    font-size: 27px;
}

.main-container{
    display: flex;
    flex: 1;
    height: 100vh;
    width: 100%;
    background: #fff url(../img/bg/bg2.jpg) no-repeat center top;
    background-size: cover;
    align-items: center;
    justify-content: center;
}

.content-container{
    display: flex;
    height: 90vh;
    width: 80%;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.main-button-container{
    width: 450px;
    /* height: 60px; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 180px;
}

.main-button{
    background-color: #FF0000;
    padding: 15px 25px;
    border-radius: 5px;
}

.main-text h1{
    color: #ffffff;
}

