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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #333;
}

.container h1 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
}

.burger-menu {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.5rem;
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #333;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0);
    text-align: center;
}

.container img {
    max-width: 80%;
    height: auto;
    margin: 20px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
}

.cta-button {
    display: inline-block;
    width: 200px;
    padding: 12px 25px;
    background: #9900ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 5px;
}

.cta-button:hover {
    background-color: #6600cc;
    border-color: #ffffff00;
    transform: scale(1.05);
}


body {
    margin: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.home-button {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 9999;
}

.home-button:hover {
    color: #9900ff;
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.special-cta {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 10%;
    width: auto;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    position: fixed;
    top: 100px;
    left: 20px;
}

.special-cta:hover {
    color: #9900ff;
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    outline: none;
}

.special-cta2 {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 10%;
    width: auto;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.special-cta2:hover {
    color: #9900ff;
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    outline: none;
}
