*{
    color: white;
    font-family: 'Rammetto One';
    text-shadow: 1px 5px 5px black;

}
a{
    
    text-decoration: none;
    color: white;
}

body {
    margin: 0;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("./assets/bulletrain743-dubai-1767540_1920.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(6px);
    z-index: -1;
}

.text{
    backdrop-filter: blur(50px);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid white;
}
.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;   
    gap: 12px;                 
    margin-top: 30px;
}

.badges img {
    height: 35px;              
    width: auto;
    transition: transform 0.2s ease;
}


.badges img:hover {
    transform: scale(1.05);
}