@font-face {
    font-family: 'CustomFont';
    src: url('custom-font.woff2') format('woff2');
}

body {
    font-family: 'CustomFont', Arial, sans-serif;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fad0c4);
    color: #333;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
    background-attachment: fixed; 
}

body:hover{
	background: linear-gradient(135deg, #fad0c4, #ff9a9e);
}

header {
    background: #6b8e23;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px 10px 0 0;
	transition: background 0.3s ease-in-out;
	opacity: 75%;
}

h1, h2 {
    text-transform: uppercase;
    text-shadow: 2px 2px #aaa;
	letter-spacing: 2px;
	font-weight: bold;
	text-align: center;
}

a:link { 
	color: #333; 
}

nav {
    margin: 20px 0;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    padding: 0;
    list-style: none;
}

.pagination a {
    padding: 10px 20px;
    background: #eee;
    margin: 0 5px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s;
}

.pagination a:visited {
    color: #6b8e23; 
}

.pagination a:focus {
    outline: 2px solid #ff9a9e; 
    background: #fafad2;
}

.pagination a:hover, .pagination a.active {
    background: #6b8e23;
    color: white;
    transform: scale(1.1);
}

section {
    background: rgba(255, 255, 255, 0.85);
    padding: 20px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.section-description {
    font-size: 1.1em;
    text-align: center;
    color: #444;
    margin: 15px 0;
    padding: 10px;
    border-bottom: 2px solid #6b8e23;
    font-style: italic;
}
.image-subheading {
	 font-size: 1.1em;
    text-align: center;
    color: #444;
    margin: 15px 0;
    padding: 10px;
    font-style: italic;
}
section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.styled-list li, .custom-list li {
    padding: 5px;
    display: flex;
    align-items: center;
}

.styled-list li {
    list-style-type: square;
    color: darkblue;
}
.styled-list li:hover {
    background: #ffefef;
    color: #ff9a9e;
}

.custom-list li {
    list-style: none;
    position: relative;
    padding-left: 40px;
}

.custom-list li::before {
    content: "";
    background: url('flower-button.png') no-repeat center center;
    background-size: cover;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
 }
.custom-list li:hover::before {
    transform: translateY(-50%) rotate(20deg);
}
.table-one, .table-two {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
   
}

.table-one th, .table-one td, .table-two th, .table-two td {
    border: 1px solid #000;
    padding: 12px;
    text-align: center;
}
.table-one tr:hover, .table-two tr:hover {
    background: #ffe4e1;
}
.table-one {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
}

.table-two {
    background: linear-gradient(45deg, #6b8e23, #b0c4de);
    border: 30px solid transparent; 
    border-image-source: url('flower-button.png');
    border-image-slice: 40 fill;
    border-image-repeat: round;
}

.image-effect-container {
    position: relative;
    display: inline-block;
    text-align: center;
}

.image-effect {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    border-radius: 15px;
}

.image-effect-container {
    margin: 40px 40px; /* Adjust the value for more or less space */
}

.images-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hover-fade-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    transition: opacity 0.5s ease;
    display: block;
    margin: 40px 40px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
}

.hover-fade-image:hover {
    filter: grayscale(100%);
    opacity: 0.5;
}

.fancy-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #ff9a9e, #fad0c4);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    box-shadow: 3px 3px 8px gray;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    cursor: pointer;
    opacity: 0;
}

.image-effect-container:hover .fancy-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 5px 5px 15px gray;
}

.vintage-flower {
    position: relative;
    display: inline-block;
    text-align: center;
    max-width: 400px;
    margin: 20px auto;
}

.vintage-flower img {
    width: 100%;
    border-radius: 15px;
}

.vintage-flower .fancy-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #ff9a9e, #fad0c4);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    box-shadow: 3px 3px 8px gray;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
    cursor: pointer;
    opacity: 1;
}

.vintage-flower .fancy-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 5px 5px 15px gray;
    background-color: #fad0c4;
    color: #6b8e23;
}

.text-stroke, .text-shadow, .box-shadow {
    text-align: center;
}

.text-stroke {
    -webkit-text-stroke: 1px black;
    font-size: 28px;
    color: white;
}

.text-shadow {
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
    font-size: 24px;
}

.box-shadow {
    background: #f0f0f0;
    padding: 20px;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
}

footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-radius: 0 0 10px 10px;
}

.resource-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
	text-align: center;
}

.resource-list li {
    margin: 10px 0;
    padding: 10px;
    background: conic-gradient(from 25deg, #b0c4de, #6b8e23, #b0c4de);
    border-radius: 15px;
    transition: transform 0.3s;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
	}

.resource-list li:hover {
    transform: scale(1.15);
}

.resource-list a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
	}

.resource-list a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    header, footer {
        padding: 15px;
    }

    .pagination a {
        padding: 8px 12px;
        margin: 0 3px;
    }

    .fancy-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .table-one th, .table-one td, .table-two th, .table-two td {
        padding: 8px;
    }

    section {
        padding: 15px;
    }

    .custom-list li::before {
        width: 20px;
        height: 20px;
    }
}

