@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    background: rgb(253, 209, 120);
    background: linear-gradient(0deg, rgba(253, 209, 120, 0.473) 0%, rgba(123, 198, 245, 0.479) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
    overflow: hidden;
}

h1 {
    text-align: center;
    font-size: 36px;
    margin-top: 50px;
}

h2 {
    margin-top: 35px;
    font-size: 24px;
}

.aligncenter {
    text-align: center;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.308);
    padding: 80px 100px 20px 100px; 
    border-color: rgba(238, 238, 238, 0.336);
    border-style: solid;
    border-width: 1px;
    backdrop-filter: blur( 7.5px );
    -webkit-backdrop-filter: blur( 7.5px );
}

.corner-image {
    position: absolute;
    left: -20px;
    top: -35px;
    width: 80px;
    height: 80px;
    display: inline-block;
    margin-top: 20px;
}



#bonText {
    background-color: rgba(248, 248, 32, 0.836);
    margin-top: 40px;
    padding: 5px;
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 3em;
}


.share {
    margin-top: 10vh;
}

a {
    color: #4d4dff;
    font-size: 18px;
    margin: 0,5em;
    text-decoration: none;
}


@media only screen and (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 18px;
    }
    a {
        font-size: 14px;
    }
    .aligncenter {
        padding: 40px;
    }
}