@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#fff;
    color:#000;
    font-family:'Inter',sans-serif;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
    text-align:center;
    overflow:hidden;
}

.container{
    max-width:700px;
    padding:40px;
    animation:fadeIn 1s ease;
}

h1{
    font-size:4rem;
    font-weight:700;
    margin-bottom:30px;
    line-height:1.1;
}

p{
    font-size:1.2rem;
    line-height:1.8;
    color:#333;
    margin-bottom:40px;
}

.button{
    display:inline-block;
    text-decoration:none;
    color:#fff;
    background:#000;
    padding:14px 32px;
    border:2px solid #000;
    transition:.3s;
    font-weight:600;
}

.button:hover{
    background:#fff;
    color:#000;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){

    h1{
        font-size:2.5rem;
    }

    p{
        font-size:1rem;
    }

}