*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:linear-gradient(135deg, #0D0D0D, #1A1A1A);
    color:#F5F5F5;
    font-family:Arial, Helvetica, sans-serif;
}

.hero{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    height:100vh;
    text-align:center;
    padding:20px;
}

.hero h1{
    text-shadow: 0 0 25px rgba(143,47,66,.35);
    font-size:92px;
    margin-bottom:20px;
}

.hero h2{
    color:#8F2F42;
    margin-bottom:25px;
    font-weight:400;
}

.hero p{
    max-width:700px;
    font-size:18px;
    line-height:1.7;
    color:#cbd5e1;
    margin:30px 0 45px;
}

.logo{
    width:850px;
    max-width:90%;
    height:auto;
    margin-bottom:20px;
}

.buttons{
    display:flex;
    gap:20px;
}

.buttons button{
    background:#6D1F2D;
    color:#F5F5F5;
    border:1px solid #8F2F42;
    padding:15px 35px;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}


button:hover{
    background:#8F2F42;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(143,47,66,.4);
}

@media (max-width:768px){

    .logo{
        width:320px;
    }

    .hero p{
        font-size:18px;
        padding:0 20px;
    }

    .buttons{
        flex-direction:column;
        width:100%;
        align-items:center;
    }

    .buttons button{
        width:250px;
    }

}