body {
    padding: 0;
    margin: 0;
    background: #f2f6e9;
}
.navbar {
    background-color:#991cbb;
}
.nav-link,
.navbar-brand {
    color: #ffffff;
    cursor: pointer;
}
.nav-link {
    margin-right: 1em !important;
}
.nav-link:hover,
.navbar-brand:hover {
    color: #000;
}
.navbar-collapse {
    justify-content: flex-end;
}

.header {
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
}

.description {
	left: 50%;
	position: absolute;
	top: 45%;
	transform: translate(-50%, -50%);
	text-align: center;
}
.description h1 {
	color: #991cbb;
}
.description p {
	color: #fff;
	font-size: 1.3rem;
	line-height: 1.5;
}

.description button {
    border:1px solid #991cbb;
    background:#991cbb;
    border-radius: 0;
    color:#fff;
    position: absolute;
}
.description button:hover {
	border:1px solid #6f1588;
    background:#6f1588;
    color:#ffffff;
}

.features {
	margin: 4em auto;
	padding: 1em;
	position: relative;
}
.feature-title {
	color: #333;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.features img {
	-webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
	margin-bottom: 16px;
}

.gallery-container {
    position: relative;
    max-width: 600px;
    margin: 50px auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    padding: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    padding: 20px;
}

img{
    border-radius: 2%;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
}
.controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.prev-button,
.next-button {
    background-color: none;
    color: #ffffff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}

.page-footer {
    background-color: #222;
    color: #ccc;
    padding: 60px 0 30px;
}
.footer-copyright {
    color: #666;
    padding: 40px 0;
}
.rounded-field {
    padding: 10px;
    border: 2px solid #3498db;
    border-radius: 10px;
    width: 300px;
    box-sizing: border-box;
    margin: auto;
}

.non-editable-text {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
}