@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




body {
    font-family: "Jost";
    background-image: url(webbg.png);
    background-repeat:no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size:1920px 1080px;
    background-color: beige;
    max-height: 1000px;
    
}

.creations_header {
    padding: 30px;
    background: #ffffff79;
    padding: 50px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.creations_header h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.creations_header p {
    font-size: 1.25rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.creations {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.creationtext {
    max-width: 500px;
    text-align: left;
    padding-right: 30px;
    font-size: 20px;
}

.creationtitle {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.creationp p {
    color: #777;
    line-height: 1.7;
}

.creationimg {
    width: 45%;
    max-width: 400px;
    height: auto;
    margin-right: 150px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.creationimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
