* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}
/* 
body {
    background: url('bg.webp'), radial-gradient(circle, white 1px, transparent 1px);
    background-repeat: no-repeat, repeat;
    background-size: cover, 10px 10px;
    background-position: top, bottom;
    background-color: #53b7ea;
} */

body {
    background: url('bg-filtered.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    background-color: #53b7ea;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

img {
    object-fit: contain;
}

.sticky-navbar {
    top: 0;
    background-color: #FFFFFF;
    height: 10vh;
    border-bottom-left-radius: 5vh;
    border-bottom-right-radius: 5vh;
    position: sticky;
}

.sticky-navbar ul {
    list-style: none;
    /* Remove default bullet points */
    margin: 0;
    padding-left: 7vw;
    padding-right: 7vw;
    display: flex;
    justify-content: space-between;
}

.sticky-navbar li {
    display: inline-block;
    margin: 0;
}

@media (max-width: 1920px) {
    nav img {
        width: 30%;
    }
}

.sticky-navbar li a {
    text-decoration: none;
    color: #333;
    font-size: calc((1vw + 1vh));
    line-height: 10vh;
    white-space: nowrap;
    transition: background 0.3s ease, border-radius 0.3s ease;
    border-radius: calc((1vw + 1vh));
    padding: 10px 20px;
}


.sticky-navbar li a:hover {
    color: #FFFFFF;
    background: #53b7ea;
    border-radius: calc((1vw + 1vh));
}

.sticky-navbar li:first-child a:hover {
    color: inherit;
    background: none;
    border-radius: 0;
}

.intro-container {
    text-align: justify;
    padding-top: 20vh;
    padding-left: 10vh;
    padding-right: 10vh;
}

.intro-container p {
    font-size: 4vw; 
    color: #FFFFFF; 
}

.intro-container .text-container {
    margin-bottom: 2.5vh;
}

.button-working-bitcoin button {
    padding: 1vh 2vw;
    background-color: transparent; /* Customize button color */
    color: #53b7ea; /* Customize button text color */
    border: 2px solid #53b7ea; /* Specify border width and style */
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Add a smooth transition effect */
    font-size: 1vw;
}

.button-working-bitcoin button:hover {
    background-color: #005ea6; /* Change button color on hover */
}

.phone-number-container {
    margin-top: 4vh;
    text-align: right;
    color: white;
}