@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&family=Lobster&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Ubuntu", sans-serif;
    background-color: #fdf8e1;
    color: #333;
    display: block;
    padding: 10px;
    background-image: url('background.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1 {
    font-family: "Lobster", cursive;
    background-color: rgba(230, 57, 70, 0.8);
    color: white;
    padding: 20px;
    border: 5px solid #a62c2b;
    border-radius: 8px;
    text-align: center;
    width: 100%;
}

h2 {
    font-family: "Ubuntu", sans-serif;
    color: #264653;
    background-color: rgba(233, 196, 106, 0.85);
    padding: 10px;
    border-left: 7px solid #2a9d8f;
    border-radius: 4px;
    margin-bottom: 15px;
}

p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #4a4a4a;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.7);
}

a {
    color: #1d3557;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
}

a:hover {
    color: #e63946;
    border-bottom: 2px solid #e63946;
}

figure {
    display: block;
    text-align: center;
    background-color: rgba(255, 221, 87, 0.85);
    padding: 12px;
    border: 3px solid #e76f51;
    border-radius: 10px;
    margin: 20px auto;
}

img {
    max-width: 100%;
    height: auto;
    border: 5px solid #f4a261;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

.video-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    border: 4px solid #2a9d8f;
    border-radius: 10px;
    padding: 10px;
}

.container {
    width: 80%;
    margin: 20px auto;
    padding: 15px;
    border: 3px solid #333;
    border-radius: 10px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.75);
}

.sidebar {
    width: 30%;
    float: right;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: rgba(249, 249, 249, 0.85);
    position: relative;
    overflow: hidden;
}

.box {
    background-color: rgba(255, 183, 3, 0.85);
    padding: 20px;
    margin: 12px 0;
    border: 3px solid #e76f51;
    border-radius: 12px;
    text-align: center;
    font-size: 1.2em;
    font-family: "Lobster", cursive;
    color: #264653;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
    border-top: 3px solid #222;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
