:root {
    --main-bg: #0a0a23;
    --main-gold: #ffd700;
    --main-white: #f5f5f5;
    --shadow: 0 0 15px rgba(0,0,0,0.6);
}

body{
    margin: 0;
    font-family: "Libre Caslon Display", serif;
    font-weight: 400;
    font-style: normal;
    background: var(--main-bg);
    color: var(--main-white);
}

.navbar{
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    box-shadow: var(--shadow);
}

.navbar ul{
    display: flex;
    justify-content: center;
    padding: 10px;
    margin: 0;
    list-style: none;
}

.navbar a{
    color: var(--main-gold);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: var(--main-white);
}

section{
    padding: 50px 20px;
    text-align: center;
}

.home{
    color: var(--main-gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title{
    font-size: 50px;
    text-shadow: 0 0 15px var(--main-gold);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px var(--main-gold); }
    to { text-shadow: 0 0 30px var(--main-gold); }
}

div{
    border: 1px solid var(--main-gold);
    border-radius: 10px;
    text-align: center;
    width: 95%;
    margin-left: 20px;
}

img{
    height: 200px;
    width: 200px;
    border: 0px solid #000000;
    border-radius: 10px;
    padding-left: 30px;
}

.Hogwartsimg{
    display: flex;
    flex-direction: row;
    gap: 40px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 300px;
    margin: auto;
}

input, textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

button {
    padding: 10px;
    background: var(--main-gold);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--main-gold);
}

h1{
    color: var(--main-gold);
}

h2{
    color: var(--main-gold);
}

table{
    width: 700px;
    height: fit-content;
    max-width: 800px;
    border: 1px solid var(--main-gold);
    border-radius: 10px;
    margin-left: 60px;
}

video {
    width: 400px;
    height: auto; 
    border: 2px solid var(--main-gold);
    border-radius: 10px;
    box-shadow: 0 0 15px var(--main-gold);
    margin-left: 210px
}

h1::after {
    content: "✨";
    color: var(--main-gold);
}
h2::after {
    content: "✨";
    color: var(--main-gold);
}
p::first-letter {
    font-size: 1.5em;
    color: var(--main-gold);
}

footer{
    text-align: center;
}

