body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #ff7e5f 50%, #ff0077);
    color: #fff;
    text-align: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

header .logo, header .jinny {
    flex: 1;
}

header .logo{
    text-align: left;
}

header .jinny{
    text-align: right;
}

header .logo img, header .jinny img {
    height: 100px;
}

header .menu {
    display: flex;
    /* flex-direction: column;
    align-items: flex-end; */
    position: absolute;
    right: 2rem;
    top: 7rem; /* Adjust this to position buttons below images */
}

header .menu a {
    color: #fff;
    background: #ffa600;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 5px;
}

header .menu a:hover {
    background: #ff00f2;
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
}

section h2 {
    font-size: 2rem;
    color: #fff;
    text-align: center;
}

section p {
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: left;
}

.download-button {
    background: #28a745;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    display: inline-block;
}

.download-button:hover {
    background: #218838;
}

footer {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.8rem;
    text-align: left;
}
