*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Body */

body{
    background:#f5f3f1;
    font-family:Arial, Helvetica, sans-serif;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#b49b7d;
}

/* Container */

.container{
    text-align:center;
    padding:20px;
}

/* Logo */

.logo{
    width:300px;
    margin-bottom:45px;

}

/* Title */

h1{
    font-size:58px;
    margin-bottom:25px;
    font-weight:700;
}

/* Text */

p{
    font-size:28px;
    line-height:1.6;
}

/* Responsive */

@media (max-width:768px){

    .logo{
        width:140px;
    }

    h1{
        font-size:38px;
    }

    p{
        font-size:22px;
    }
}