@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    font-family: 'Roboto';
}

html {
    background-image: url(../images/background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 15px;
    /* background-color: #7ab567; */
    max-width: 600px;
    backdrop-filter: blur(2px);
    background: transparent;
    background-color: rgba(0, 0, 0, .5);
    text-align: center;
    color: white;
    overflow-x: hidden;
}

.main-logo {
    max-width: 250px;
}

img {
    width: 100%;
    /* filter: drop-shadow(5px 5px 0px rgba(110, 13, 96, 0.8))  */
    /* drop-shadow(0px 0px 10px rgba(253, 88, 253, 0.5)); */
    border-radius: 10px;
    margin-block: 10px;
}

h1 {
    font-weight: 1000;
    color: white;
    /* text-shadow: 2px 2px 2px rgba(0,0,0, 0.8); */
    /* filter: drop-shadow(1px 1px 2px rgba(0,0,0,.5)); */
    filter: drop-shadow(2px 2px 0px rgba(184, 28, 161, 0.8)) drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.5));
    margin-block: 0.8rem;
}

h2 {
    color: rgba(255, 255, 255, .8);
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

p,ul {
    margin-block: 15px;
    font-size: 15pt;
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.3)) drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.5));
    letter-spacing: 0.7px;
    text-align: left;
}

ul {
    list-style: '✅ ';
}

.whatsapp-logo {
    width: 60px;
    position: fixed;
    display: flex;
    z-index: 99999;
    top: 0;
    right: 0;
    display: none;
}

.whatsapp-logo img {
    filter: none;
}

a {
    color: white;
}

h3 a {
    filter: drop-shadow(2px 2px 0px rgba(184, 28, 161, 0.8)) drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.5));
    font-size: 20pt;
}

.pay {
    margin-block: 20px;
    width: 100%;
}

.pay button {
    font-size: 13pt;
    padding: 15px;
    font-weight: bold;
    width: 100%;
    background-color: rgb(48, 196, 48);
    color: white;
    border-radius: 10px;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    cursor: pointer;
    border: 2px solid green;
    text-align: center;
}

.underline {
    text-decoration: underline;
}


.social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-transform: uppercase;
}

.social-media .icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-media img {
    max-width: 50px;
}

.fts {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.big-red {
    font-size: 1.5rem;
    text-decoration: underline;
    color: rgb(219, 13, 13);
    text-shadow: 1px 1px 1px rgba(45, 45, 45, 0.5);
}

section {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    background-color: rgba(57, 131, 20, 0.8);
    border-radius: 15px;
    margin-block: 20px;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
}

section img {
    max-width: 80px;
}

.text-center {
    text-align: center;
}