body {
    background: #181C29;
    background: linear-gradient(90deg,rgba(24, 28, 41, 1) 0%, rgba(24, 28, 41, 1) 100%);
    font-family: "Montserrat", sans-serif;
    color: rgba(255, 255, 255, 0.7);
}
.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left:20px;
    padding-right:20px;
}
.site-header{
    margin-top:20px;
}
.site-header .logo {
    height: 26px;
}
.site-content {
    height: calc(100vh - 160px);
    background: url("../gfx/lucky_background.svg") no-repeat 700px 0;
    background-size: contain;
}
.site-content .container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(100vh - 160px);
    padding-left:20px;
    padding-right:20px;
}
.site-title span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    font-size: 43px;
    display: block;
}
.site-title {
    color: rgba(255, 255, 255, 1);
    font-size: 72px;
}
p {
    margin-bottom: 40px;
}
.site-footer .container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.site-footer .footer-image {
    width: 100%;
    max-width: 500px;
}
.app-downloads {
    display: flex;
    gap: 30px;
    flex-direction: column;
}
/* Style for the info text */
#os-info {
    margin-top: 15px;
    color: #555;
}
.hero-content {
    padding-right:200px ;
}
/* The 3px bordered button style */
.bordered-button-3px {
    /* Core border style */
    border: 3px solid #31F296; /* Blue border, change color as needed */

    /* Appearance */
    background-color: transparent; /* White background */
    color: #fff; /* Text color matches border */
    padding: 18px 40px; /* Vertical and horizontal padding */
    font-size: 1rem; /* Text size */
    font-weight: bold;
    text-align: center;
    text-decoration: none; /* Remove underline if used on <a> tags */
    cursor: pointer; /* Indicate interactivity */
    border-radius: 10px; /* Slightly rounded corners */
    display: inline-block; /* Allow padding and centering */

    /* Transition for hover effect */
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.bordered-button-3px:hover {
    background-color: #2BAD6C; /* Invert colors on hover */
    color: #ffffff;
}

/* Focus style for accessibility */
.bordered-button-3px:focus {
    outline: 2px solid #2BAD6C; /* Add a focus outline */
    outline-offset: 2px; /* Offset the outline slightly */
}

/* Active state (when clicked) */
.bordered-button-3px:active {
    background-color: #2BAD6C; /* Darker background when active */
    border-color: #2BAD6C;
    color: #ffffff;
}
main {display: flex; flex-direction: column}
@media only screen and (max-width: 1468px) {
    .site-content {
        background: url("../gfx/lucky_background.svg") no-repeat 300px 0;
    }
}
@media only screen and (max-width: 968px) {
    .hero-content {
        padding-right:50px ;
    }
}
@media only screen and (max-width: 768px) {
    .site-content .container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
        height: calc(100vh - 360px);
    }
    .site-footer {
        margin-top:70px
    }
    .site-content {
        background: url("../gfx/lucky_background.svg") no-repeat center 0;
        background-size: contain;
    }
    .hero-content {
        padding-right:0;
    }
    .site-content, .site-content .container {
        height: auto;
    }

}
@media only screen and (max-width: 468px) {
    .site-content .container {
        display: block;
    }
    .app-downloads {
        margin-top:60px;
        padding-bottom: 120px;
    }
    .site-footer {
        background: #181C29;
        background: linear-gradient(90deg,rgba(24, 28, 41, 1) 0%, rgba(24, 28, 41, 1) 100%);
        position: fixed;
        bottom: 0;
    }

}