body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 0;
}

.settings, .emoji-options {
     margin: 40px 0; 
}

.settings select {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem; 
    color: black; 
    padding: 10px 15px; 
    margin: 0 5px; 
    border: 1px solid #eee; 
    border-radius: 5px; 
    background-color: white; 
    cursor: pointer; 
}

.settings select:focus {
    outline: none; 
    border-color: #5B8FE6; 
}

.road {
    background-color: #333;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 80px 0;
}

.emoji {
    position: absolute;
    left: 10%;
    font-size: 4rem;
    z-index: 2;
    transform: scaleX(-1);
}

.letter {
    position: absolute;
    font-size: 2rem;
    z-index: 1;
	color: #fff;
	letter-spacing: 0.3em;
}

.emoji-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0; /* Adjusts vertical space around emoji options */
}

.emoji-option {
    cursor: pointer;
    font-size: 2rem;
    padding: 10px;
    user-select: none;
    transition: transform 0.2s ease;
}

.emoji-option:hover {
    transform: scale(1.2);
}