/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    background-color: #999999; /* Black background */
    color: black; /* White text */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

/* Icon in the upper left corner */
.icon img {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
}

/* Content container */
.content {
    text-align: center;
    z-index: 1;
}

/* Title styles */
.title {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    font-family: "Playfiar Display";
}

/* Header styles */
.header {
    font-size: 1.5rem;
    font-weight: 300;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    font-family: Montserrat;
}