@font-face{
    font-family: 'Comme';
    font-weight: 400;
    src: url('../fonts/comme-regular-webfont.woff2') format('woff2'),
         url('../fonts/comme-regular-webfont.woff') format('woff');
    font-display: swap;
}

@font-face{
    font-family: 'Comme';
    font-weight: 600;
    src: url('../fonts/comme-semibold-webfont.woff2') format('woff2'),
         url('../fonts/comme-semibold-webfont.woff') format('woff');
    font-display: swap;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comme', sans-serif;
}

html,body{
    height: 100%;
    max-width: 1200px;
}

.box{
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.image-center img{
    width: 70%;
    height: 70%;
}

.title{
    color: #479a9e;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 5px;
}

.content{
    color: #a2a8ac;
    font-weight: 200;
    font-size: 16px;
    margin-bottom: 30px;
}

h2{
    font-size: 30px;
}

p{
    font-size: 16px;
}

.btn{
    background-color: #479a9e;
    border: none;
    outline: none;
    width: 150px;
    height: 45px;
    color: white;
    font-weight: 600;
    border-radius: 12px;
    font-size: 14px;
    padding: 5px;
    text-transform: uppercase;
    transition: 0.5s;
}

.btn:hover{
    scale: 1.05;
}

.btn:active{
    scale: 0.95;
}

@media screen and (max-width: 1250px) {
    .image-center img{
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 600px) {
    .box{
        padding: 0 4%;
        position: absolute;
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
    }
    
    .title{
        color: #479a9e;
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 400;
        margin: 0 0 5px;
    }
    
    .content{
        color: #a2a8ac;
        font-weight: 200;
        font-size: 14px;
        margin-bottom: 30px;
    }
}