body{
    background-image: url("./img/background.jpg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

a{
    text-decoration: none;
    color: #FFF;
    cursor: pointer;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

.box{
    width: 700px;
    display: flex;
    flex-direction: column;
    margin: 28px auto 0;
}
@media (max-width: 700px){
    .box{
        width: 100%;
    }
}
.topLine {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}
.logo{
    font-size: 24px;
    font-weight: 800;
    margin: 0 20px 0 15px;
}
.chip{
    padding: 8px 24px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 31px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
}

.title{
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 34px;
}
@media (max-width: 680px){
    .title{
        font-size: 35px;
    }
}
@media (max-width: 560px){
    .title{
        font-size: 30px;
    }
}
.description{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
}
.btnWrapper{
    position: relative;
}
.tryImg{
    position: absolute;
    left: 220px;
    top: -70px;
}
@media (max-width: 680px){
    .tryImg{
        display: none;
    }
}
.btn{
    border-radius: 31px !important;
    font-size: 14px!important;
    font-weight: 500!important;
    background-color: black !important;
    padding: 12px 24px !important;
    display: flex!important;
    align-items: center!important;
    text-transform: none!important;
    color: #FFF;
    cursor: pointer;
}