@font-face { font-family: Inter; src: url('../assets/Fonts/Inter-4.1/Inter.ttc'); } 

body {
    font-family: Inter;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    /*background-image: url('../assets/Pictures/bg_pale.jpg');*/ /*A plain white background will make it look modern*/
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px;
    background-color: rgba(255, 255, 255, 0.8); /* Adding a semi-transparent white background to make the content more readable */
    border-radius: 30px; /* Adding rounded corners to the container */
}

.center-content {
    margin: 0;
    position: absolute;
    top: 50px;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
h1 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

p {
    color: #555;
    margin-bottom: 20px;
}

.designs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.design {
    width: 250px;
    margin: 10px;
    text-align: center;
}

.design img {
    max-width: 200px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.navbar {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s;
}

.navbar.scrolled {
    background-color: #555; /* Change background color on scroll */
}