html, body {
    margin: 0;
    padding: 0;
    background: #000;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #000 url('dubai.jpg') 20% 50%/cover no-repeat;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 100vh;
}

body::after {
    content: '';
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 2;
    background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    pointer-events: none;
}

#rain {
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

#rain canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; 
    left: 0;
}

#canvas { z-index: 5; }
#canvas { z-index: 6; }

#intro {
    width: 700px;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    margin: 50px 0 0 50px;
    container: intro / inline-size;
    border-radius: 20px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(15px);
}

#logo {
    width: 500px;
    height: 300px;
    background: url('boatwifhat.logo.png') 50%/contain no-repeat;
}

h1 {
    font-size: 5.5cqw;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    font-weight: 900;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: transparent;
    line-height: 35px;
    background-image: linear-gradient(-15deg, #00ffbb 0%, #00eeff 100%);
}

p {
    font-size: 3cqw;
    margin: 10px 0 10px;
}

h2 {
    font-size: 5cqw;
    text-transform: uppercase;
    margin: 0;
    font-weight: 900;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: transparent;
    line-height: 60px;
    background-image: linear-gradient(-15deg, #ff00d4 0%, #ffd900 100%);
}

ol {
    margin: 0;
    padding: 0 0 0 20px;
}
ol li {
    font-size: 3cqw;
}

#airdrop {
    width: fit-content;
    padding: 15px 45px;
    font-size: 4cqw;
    text-align: center;
    background-image: linear-gradient(-15deg, #0026ff 0%, #00eeff 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 80px;
    margin: 50px 0 0;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
}

@media screen and (max-device-width: 765px) {
    body {
        background: #97b5d1 url('dubai.jpg') 50% 100%/100vh no-repeat;
    }

    body::after {
        background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    }

    #logo {
        width: 100%;
        height: 400px;
        margin: 130px auto 50px;
    }

    #intro {
        width: 100%;
        padding: 40px;
        margin: 0;
        backdrop-filter: unset;
    }

    h1 {
        font-size: 8.5cqw;
        line-height: 3.2cqh;
        -webkit-text-stroke-width: 5px;
    }

    p {
        font-size: 6cqw;
    }

    h2 {
        margin: 50px 0;
        font-size: 7.5cqw;
    }

    ol {
        width: 100%;
        padding: 25px;
        box-sizing: border-box;
    }
    ol li {
        font-size: 2cqw;
    }

    #airdrop {
        padding: 25px 55px;
        font-size: 7cqw;
        text-align: center;
        color: #fff;
        text-decoration: none;
        border-radius: 80px;
        margin: 50px auto 0;
        display: block;
        text-transform: uppercase;
        background-image: linear-gradient(-15deg, #0026ff 0%, #00eeff 100%);
    }
} 