/* FinalProject.css */
/* Author: Daniel Barnes */
/* Date Created: December 09, 2025 */

body {
    background-image: url('https://thumbs.dreamstime.com/b/sun-above-horizon-25509056.jpg'); /* Background image of horizon with rays of sunlight */
    background-size: cover; 
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    font-family: 'Arial', sans-serif; 
    text-align: center; 
    padding: 20px; 
    color: #5D4037; 
}

h1 {
    color: #EF6C00; /* orange heading */
    font-size: 2.5em; 
}

#slide {
    width: 800px; /* Slideshow size */
    height: auto; /* Keeps aspect ratio */
    border: 5px solid #FFE0B2;
    border-radius: 15px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    margin-bottom: 20px; 
}

button {
    background-color: #FFA726; 
    color: white; /* White text button*/
    border: none; /
    padding: 15px 30px; 
    margin: 10px; 
    border-radius: 8px; 
    cursor: pointer; 
    font-size: 1.2em; 
    font-weight: bold; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    transition: background-color 0.3s, transform 0.2s; 
}

button:hover {
    background-color: #FB8C00; 
    transform: scale(1.05); 
}