body {
    font-family: Arial, sans-serif;
    background-color: #fffaf6;
    background-image: url(Pics/background.jpg);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
  
header {
    background-color: #f6ae0b;
    font-size: 30px;
    color: #fff5d1;
    text-align: center;
}
  
.container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}
  
h1 {
    padding: 10px;
}
  
h2 {
    margin-top: 0;
}
  
ul {
    padding-right: 1.5rem;
}
  
li {
    margin-bottom: 0.5rem;
}
  
footer {
    text-align: center;
    padding: 1rem;
    color: #ffffff;
    direction: ltr;
}


/*------------------------CHECKBOX LIST------------------------------------*/

.checkboxList {
    list-style-type: none;
    padding: 0;
}

.checkboxList li {
    display: flex;
    align-items: center;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    width: 15px;
    height: 15px;
    border: 2px solid #eba709;
    display: inline-block;
    position: relative;
    margin-left: 10px;
    margin-right: 5px;
}

input[type="checkbox"]:checked {
    background-color: #facb41;
}

input[type="checkbox"]:checked::after {
    content: "✓";
    color: white;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
}

/* ------------------------SECTION WRAPPER WITH ANIMATED BORDER----------------------- */
.section-wrapper {
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
.section-wrapper:hover {
    transform: translateY(-5px) scale(1.02);
    border: 2px solid #f6b00bce;
}
  
.section-wrapper section {
    background-color: #fff7d8;
    color: #eba709;
    padding: 2rem;
    border: 1px solid #f6ae0b2f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}


/* ------------------------------- TEXT HIGHLIGHT ---------------------------------*/
::selection {
    color: #f6ae0b;
    background-color: #fff5d1;
}

section ::selection {
    background-color: #f6ae0b;
    color: #fff5d1;
}

  
/* --------------------------------- BUTTON STYLES ------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,100,900');

.btn {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #fff5d1;
    background-color: #f6ae0b;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    text-transform: uppercase;
    overflow: hidden;
    margin: 0.5em;
    border-radius: 6px;
}

.btn svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.btn rect {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-dasharray: 422, 0;
    transition: all 0.35s linear;
}

.btn:hover {
    font-weight: 900;
    letter-spacing: 1px;
    background-color: #facb41;
}

.btn:hover rect {
    stroke-width: 5;
    stroke-dasharray: 15, 310;
    stroke-dashoffset: 48;
    transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }
}