* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;    width: 100%;
    height: 100%;
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1 {
    color: #0a1f15; /* Darker color with slight green touch */
    font-size: 6rem;
    font-weight: 200; /* Even slimmer font weight */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: 4px;
    font-family: 'Raleway', 'Helvetica', 'Arial', sans-serif; /* Using Google Font for slimmer look */
}
