h1{
    text-align:center;
    color:black;
    font-family:Bradley Hand, cursive;
    text-decoration:underline;
}
h3{
    text-align:center;
    font-family:Bradley Hand, cursive;
    color: black;
}
h4{
    text-align:center;
    font-family:Bradley Hand, cursive;
    color: black;
}
h6{
    text-align:center;
    font-family: Bradley Hand, cursive;
    color: black;
}
hr{
    border:none;
    height:3px;
    background-color:black;
}
p{
    text-align:center;
    font-family:Bradley Hand, cursive;
    color:black;
}
.column img{
    width: 100%;
    height: "250";
    object-fit: cover;
    display: block;
    margin: 0 auto;
}
.column{
    flex:1;
    padding:10px;
    text-align:center;
}
.row{
    display:flex;
}
.caption{
    text-align:center;
    font-family:Bradley Hand, cursive;
    color:black;
    margin-top:10px;
}
.hover-link{
    text-decoration: none;
    color: black;
}
.hover-link:hover{
    text-decoration: underline;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    min-height:100vh;
    background-size:cover;
    background-position:center;
    transition:background-image 1s ease-in-out;
    font-family:Bradley Hand, cursive;
}
.bg-one{
    background-image:url("https://i.pinimg.com/736x/d4/cc/82/d4cc82bdd3d84c23f6f92d4b5ce98abc.jpg");
}
.bg-two{
    background-image:url("https://i.pinimg.com/736x/0a/00/c2/0a00c2837903d7e025bf0926071e1260.jpg");
}
.navbar{
    display:flex;
    justify-content: space-between;
    align-items:center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.3);
    background-filter: blur(5px);
    position:fixed;
    width:100%;
    top:0;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.logo{
    font-size:1.4rem;
    font-weight: bold;
}
.nav-links{
    list-style: none;
    display:flex;
    gap: 20px;
}
.nav-links a{
    text-decoration:none;
    color:black;
    font-weight:500;
    padding: 5px 10px;
    border-radius:5px;
    transition: all 0.3s;
}
.nav-links a:hover{
    text-decoration:underline;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    background-color: rgba(255,255,255,0.2);
}
#bgToggle{
    padding: 8px 12px;
    cursor:pointer;
    border:none;
    background-color:rgba(255,255,255,0.9);
    border-radius:5px;
    transition: all 0.3s ease;
    font-family:Bradley Hand, cursive;
    font-weight: 500;
}
#bgToggle:hover{
    background-color:rgba(255,255,255,0.9);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    text-decoration: underline;
}
main{
    padding:100px 40px 40px;
    color:#000;
    text-align:center;
}
