html {
    font-size: 16px;
}

html *{
    outline: 2px solid lime;
}
    
body{
    background-color: aliceblue;
    background-image: url('../img/man-background.png');
    height: 800px;
    background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}

header{
    display: flex;
    justify-content: center;
    text-align: center;
}

h1{
    font-size: 4rem;
    color: darkred;
}

.commingSoon{
    font-size: 4.5rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
    justify-content: center;
    text-align: center;
}

footer{
    /* max-width: 600px; */
    text-align: center;
    display: flex;
    justify-content: center;
}

footer i {
    font-size: 2em;
}

.social {
    display: flex;
    gap: 1rem;
}