header {
    background-color: #000000;
    color: #fff;
    padding: 20px;
    text-align: center;
}

p {
    color: white;
    background-color: #9c0395;
    padding: 20px;
    margin: 20px;
}

p1 {
    color: #fff;
    padding: 10px;
}

p2 {
    color: #fff;
    padding: 50px;
    margin: 50px;
    font-size: 50px;
}

#text {
    max-width: 600px;
    width: 90%;
    margin: 40px auto;
    padding: 30px;
    background-color: #000;
    color: lime;
    border: 2px solid lime;
    border-radius: 0px;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    box-sizing: border-box;
}

#sidebar {
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    width: 200px;
    padding: 20px;
    float: left;
    color: #ff27e9;
}

marquee {
    height: 100vh;
}

footer {
    color: #fff;
    padding: 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.groove {
    border-style: groove;
}

img {
    max-width: 10%;
    height: auto;
    text-align: center;
}

.option-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.option-btn img {
    width: 100px;
    height: 100px;
    margin-right: 10px;
}

.option-btn span {
    font-size: 18px;
    text-align: center;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
    flex-direction: column;
}

#option-buttons {
    display: flex;
    flex-direction: row; 
    align-items: center;
    gap: 10px;
    justify-content: center; 
}

button {
    background-color: #000;
    color: lime;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    font-size: 20px;
    width: 200px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #333;
}


@media (max-width: 600px) {
    #option-buttons {
        flex-direction: column;
    }

    button {
        width: 80%;
    }
}
