
/* Easy color customization using variables */
:root {
    --bg-color: rgb(206, 160, 8);         /* Page background */
    --primary-text: rgb(17, 44, 67);      /* Main text color */
    --accent: rgb(200, 50, 50);           /* Accent color (buttons, hover, etc.) */
    --card-bg: rgb(255, 255, 255);                     /* Container/card background */
}



.h {
    color: var(--primary-text);
    font-family: 'Times New Roman', Times, serif;
    font-weight: 900;
    font-size: 2.5rem;

    /* Fun additions */
    text-align: center;
    transition: 5s;
}

/* Hover effect for title */
.h:hover {
    color: var(--accent);
    transform: scale(2.05);
}




#main {
    max-width: fit-content;
    margin: auto;
    padding: 20px;

    /* Card-like styling */
    background-color: var(--card-bg);
}




img {
    width: 150px;              /* FIXED: use width instead of scale */
    height: auto;
}



.center {
    display: flex;
    justify-content: center;
}

/* Centers both horizontally and vertically */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* space between items */
}


.huge-text {
    font-size: 10vw; /* scales with screen size */
    text-align: center;
    color: var(--primary-text);
}



/* Button hover effect */
.button:hover {
    background-color: black;
    transform: scale(1.1);
}



:root {
    --bg-image: url("/pictures/coolingtowerMe.jpg");
}

body {
    background-image: var(--bg-image);
    background-repeat: repeat;
    background-size: 150px;   
}