@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Gravitas+One&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --ff-sans: 'Lobster Two', sans-serif;
}

body {
    font-family: var(--ff-sans);
    background-color: #780000;
    color: #fdf0d5;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contain {
    text-align: center;
}

h1 {
    font-size: 4rem;
    color: #fdf0d5;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.container {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.btn {
    text-decoration: none;
    color: #780000;
    background-color: #fdf0d5;
    padding: 20px 45px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.btn:hover {
    background-color: #780000;
    color: #fdf0d5;
    border: 2px solid #fdf0d5;
}

.footer {
    margin-top: 60px;
    font-size: 0.9rem;
    color: #fdf0d5;
}