* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 'Montserrat', 'Open Sans', sans-serif;
    /* color: #222222;
    background-color: #fcfcfc; */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* Specify the path to your image */
    background-image: url('look1.jpg'); 
    /* Prevent the image from repeating/tiling */
    background-repeat: no-repeat; 
    /* Scale the image to perfectly cover the entire screen */
    background-size: cover; 
    /* Center the background image */
    background-position: center;   
    /* Keep the background fixed during scroll */
    background-attachment: fixed; 
    /* Fallback background color if the image fails to load */
    background-color: #80cc00;  
}

.logo {
    font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 'Open Sans', sans-serif;  /* heading */
    font-size: 8rem;
    font-weight: 400;
    font-style: normal;
    color: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5%;
}

.content {
    font-family: 'Open Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,  sans-serif; /* body */
    font-size: 2rem;
    font-weight: 50;
    font-style: normal;
    color: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5%;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    letter-spacing: +0.4em;
}