
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-image:linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/alkoott.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.logo img {
    height: 7rem;
    max-width: 100%;
}

.qrcode img {
    height: 10rem;
    max-width: 100%;
}

.icon {
    background-color: #ffffff;
   
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.link-row {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.link-row:hover {
    transform: scale(1.02);
}

a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive Queries */
@media (max-width: 768px) {
    .logo img {
        height: 5rem;
    }
    
    .qrcode img {
        height: 10rem;
    }
    
    .icon {
        height: 2.5rem;
        width: 2.5rem;
        font-size: 1.2rem;
    }
    
    a {
        font-size: 1rem;
    }
    
    .link-row {
        border-radius: 30px;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 4rem;
    }
    
    .qrcode img {
        height: 6rem;
    }
    
    .icon {
        height: 2rem;
        width: 2rem;
        font-size: 1rem;
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }
    
    a {
        font-size: 0.9rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}