@font-face {
    font-family: 'DoctorSoosBold';
    src: url('DoctorSoosBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    background-image: url('bg-clouds.png'); /* Background image URL */
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover; /* Adjust as needed, e.g., cover, contain */
    margin: 0;
    font-family: 'DoctorSoosBold', Arial, sans-serif;
}

#mainTitle{
    line-height: 1;
    font-size: 40px;
    left: 375px; 
    top: 10px; 
    text-align:center;
    transform: translate(-50%, -50%);
}

#selectedImage{ left: 210px; top: 365px; height:75px; width:75px; }

#avatarImage{ left: 475px; top: 125px; width: 110px; height: 110px; }
#avatarButton{ left: 100px; top: 150px; width:208px; }
#avatarButton:hover { content: url('changeavatarhl.png'); }

#emojiButton{ left: 100px; top: 255px; width:208px; }
#emojiButton:hover { content: url('changeemojihl.png'); }

#saveButton{ left: 310px; top: 460px; width:150px; }
#saveButton:hover {
    content: url('savebuttonhl.png'); 
}

#userName{ color:black; left: 290px; top: 351px; font-size: 30px; }

#emojis{ color:black; left: 460px; top: 223px; font-size: 35px; }
.container {
    width: 748px; 
    height: 503px; 
    background-image: url('bg-profile.png'); 
    background-size: contain; /* Scale the image to fit while maintaining aspect ratio */
    background-repeat: no-repeat; /* Prevent tiling of the image */
    background-position: center; /* Center the image */
    position: relative;
}

.item {
    position: absolute;
}

.text {
    position: absolute;
    color: white;
    font-size: 16px;
}

.bottom-right-logo {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 150px; /* Adjust size as needed */
    height: auto;
    z-index: 1000; /* Ensure it's on top of other elements */
}