@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    height: 100vh;
    width: 100%;
    background-image: url("background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.container {
    text-align: center;
    padding: 20px;
}

.logo {
    width: 250px;
    margin-bottom: 20px;
}

h1 {
    font-size: 60px;
    font-weight: 700;
    color: #333;
    text-shadow: 3px 3px 4px #ccc;
}

h2 {
    font-size: 35px;
    font-weight: 400;
    color: gray;
    margin-top: -10px;
    text-shadow: 2px 2px 3px #ccc;
}

.illustration img {
    width: 420px;
    margin-top: 40px;
}

.footer {
    margin-top: 50px;
    font-size: 14px;
    color: #777;
}
