
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    background-color: #fff;
    padding: 20px;
    max-width: 800px;
    margin: 50px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
}

.container img{
    width: 20%;
    position: absolute;
    top: 20px;
    right: 20px;
}

.container p{
    width: 80%;
}
h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #0e160e;
}

h3 {
    font-size: 1.5em;
    margin-top: 30px;
    color: #333;
}

p {
    margin-bottom: 20px;
    font-size: 1em;
    color: #555;
}

a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container p a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #4CAF50;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.container p a:hover {
    background-color: #45a049;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
        margin: 20px auto;
    }

    h1 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }

    p {
        font-size: 0.9em;
    }
}


#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    background-color: #11351a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}
#scrollToTopBtn:hover {
    background-color: #485749;
}
