@font-face {
    font-family: 'StarbornFont';
    src: url(Fonts/starborn/Starborn.ttf);
}

@font-face {
    font-family: 'CreamyFont';
    src: url(Fonts/starborn/super_creamy/Super\ Creamy\ Personal\ Use.ttf);
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

body {
    background-image: url("Cutie.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    color: rgb(225, 102, 122);
    font-family: 'StarbornFont';
    font-size: 50px;
    text-align: center;
    margin: 0;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.container {
    width: 500px;
    min-width: 500px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    position: absolute;
    top: 25%;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    position: absolute;
    top: 200px;
    left: 300px;
}

#top-button, #jeans-button, #skirt-button, #accessory-button {
    font-size: 40px;
    font-family: 'CreamyFont';
    background-color: rgb(223, 126, 142);
    padding: 10px;
    color: white;
    border: none;
    border-radius: 100px;
    cursor: pointer;
}

#top-button:hover, #jeans-button:hover, #skirt-button:hover, #accessory-button:hover {
    background-color: rgb(183, 96, 111);
}

.character-container {
    position: absolute;
    top: 40%;
    right: 10%;
    display: flex;
    justify-content: center;
}

.character {
    position: relative;
    bottom: 150px;
    right:300px;
}

.character-container img {
    width: 400px;
    height: auto;
}

#top {
    position: absolute;  
    top: -150px;  
    left: 55%;
    transform: translateX(-50%); 
    width: 800px;  
    height: auto;
    z-index: 2;
}

#jeans {
    position: absolute;
    top: -130px;
    left: 55%;
    transform: translateX(-50%); 
    width: 750px; 
    z-index: 1;  
}

#skirt {
    position: absolute;
    top: -160px; 
    left: 55%; 
    transform: translateX(-50%);
    width: 800px;
    height: auto;
    z-index: 1; 
}

#accessory {
    position: absolute;
    top: -160px; 
    left: 55%; 
    transform: translateX(-50%);
    width: 800px;
    height: auto;
    z-index: 1; 
}

