
body {
    background-image: url(bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; 
}
.webpage-main {
    display: flex;
    align-content: space-around;
    justify-content: space-around;;
    height: 150vh;
    overflow:scroll;
}

.flower-catalog {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-top: 50px;
    justify-content: space-around;
    align-items: flex-start; 
    width: 100%;
    max-width: 1200px; 
    margin-top: 20px; 
    font-size: 15px;
    max-height: calc(100vh - 100px); 
    overflow-y: auto; 
}

.flower-item {
    text-align: center;
    max-width: 300px;
    margin: 40px;
    border: 1px solid #000000; 
    border-radius: 5px;
    padding: 5px;
    background-color: aliceblue;
}

.flower-item img {
    width: 100%;
    border-radius: 5px;
}

.flower-info {
    text-align: left;
    padding: 10px;
}

.flower-info h3 {
    margin-top: 10px;
    margin-bottom: 5px;
}

.flower-info p {
    margin-bottom: 10px;
}

.flower-info ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.flower-info li {
    margin-bottom: 5px;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}
