body {
    margin: 2vw;
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

.icon {
    display: none;
}

.homebar {
    height: 7vh;
    width: 100vw;
    top: 0;
    right: 1vw;
    position: fixed;
    z-index: 999;
}

.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    border-radius: 1vh;
    width: 100vw;
    box-shadow: 0vh 0.5px 17px 1vh #333333c2;
}

li {
    float: none;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 1.4vh 6vw;
    text-decoration: none;
}

.navbar :hover {
    background-color: #111;
}

.main_page {
    margin: 7vw;
    margin-top: 9vh;
    position: relative;
    word-break: break-word;
    overflow-wrap: break-word;
}

.img1 {
    position: relative;
    display: block;
    max-width: 80vw;
    height: auto;
    margin: 10vh auto 1vh;
}

/* Heading Styling */
/* Heading Styling */
h1 {
    font-size: 6rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #e63946;
    /* Red with a bit of vibrancy */
    text-shadow: 2px 2px 10px #ff0000;
}

/* Paragraph Styling */
p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #dcdcdc;
}

/* Button Styling */
button {
    font-size: 1.5rem;
    padding: 0.8rem 2rem;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0px 8px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

button:hover {
    background-color: #0056b3;
    box-shadow: 0px 12px 20px rgba(0, 86, 179, 0.4);
    transform: translateY(-3px);
}

/* Link Styling */
a {
    text-decoration: none;
}

/* Add hover effect to the back-to-site button */
a:hover button {
    color: #dcdcdc;
}

@media only screen and (min-width: 344px) {
    li {
        float: right;
    }
}

@media only screen and (min-width: 481px) {
    .icon {
        display: block;
        position: fixed;
        width: 9vw;
        left: 2vw;
        border-radius: 1vh;
        box-shadow: 0.5vh 0.5vh 17px 1vh #333333c2;
    }
}

@media only screen and (min-width: 769px) {
    .icon {
        display: block;
        position: fixed;
        width: 9vw;
        left: 2vw;
        border-radius: 1vh;
        box-shadow: 0.5vh 0.5vh 17px 1vh #333333c2;
    }
}

/* Responsive Styling */
@media only screen and (max-width: 768px) {
    h1 {
        font-size: 4.5rem;
    }

    p {
        font-size: 1.2rem;
    }

    button {
        font-size: 1.2rem;
        padding: 0.6rem 1.8rem;
    }
}