body{
    background-image: url(/photos/Background.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.fill{
    box-sizing: border-box;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.44);
    backdrop-filter: blur(1vw);
    padding: 3vw;
    display: flex;
    flex-direction: column;
    gap: 3vw;
    align-items: center;
}

#giveBtn{
    font-family: poppins, sans-serif;
    font-weight: 600;
    color: white;
    cursor: pointer;
    background-color: rgba(52, 82, 108, 1);
    border: none; 
    border-radius: 3vw;
}

#giveBtn:hover{
    background-color: rgb(66, 106, 141);
    transition: 0.2s;
    scale: 1.02;
}

@media (max-width: 768px) {
    .p-medium{
        font-size: 3vw;
    }

    #giveBtn{
        width: 40vw; 
        height: 15vw; 
        font-size: 4vw;
        border-radius: 8vw;
    }

    .modal{
        display: block; 
        position: fixed; 
        z-index: -1; 
        left: 0;
        top: 0;
        width: 100%; 
        height: 100%; 
        overflow: auto; 
        background-color: rgba(0, 0, 0, 0.7); 
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .modal-content{
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fefefe;
        margin: 5% auto; 
        padding: 1vw;
        border: 1px solid #888;
        width: 90vw; 
        height: 100vw;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    } 

    #maya-img{
        padding-left: 4.5vw;
        width: 80vw;
        height: 85vw;
    }
}

@media (min-width: 768px) {
    .p-medium{
        font-size: 1vw;
    }

    #giveBtn{
        width: 18vw; 
        height: 5vw; 
        font-size: 2vw;
    }

    .modal{
        box-sizing: border-box;
        display: block; 
        position: fixed; 
        z-index: -1; 
        left: 0;
        top: 0;
        width: 100%; 
        height: 100%; 
        overflow: auto; 
        background-color: rgba(0, 0, 0, 0.7); 
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .modal-content{
        position: fixed;
        top: 2vw;
        left: 50%;
        transform: translateX(-50%);
        background-color: #fefefe;
        margin: 5% auto; 
        padding: 1vw;
        border: 1px solid #888;
        width: auto; 
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    } 

    #maya-img{
        width: 30vw;
    }
}