@import url('https://fonts.googleapis.com/css2?family=Poppins');

* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('background.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
}

.logo {
    font-size: 2em;
    color: #ffffff;
    user-select: none;
}

.navigation a {
    position: relative;
    font-size: 1.1em;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 40px;
}

.navigation a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 5px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .5s ;
}

.navigation a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

/* Style for the blur box */
.blur-box {
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -38px;
    transform: translate(-50%, -50%);
    width: 500px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.2); /* Transparent white background */
    backdrop-filter: blur(10px); /* Apply the blur effect */
    border-radius: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.blur-box2 {
    width: 10px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.2); /* Transparent white background */
    backdrop-filter: blur(10px); /* Apply the blur effect */
    border-radius: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 10px;
    margin-right: -30px;
}

.icons {
    display: flex;
    align-items: center; /* Align icons to the center of the container */
    justify-content: flex-end; /* Right-align icons horizontally */
    margin-top: -12px; /* Push icons to the bottom */
    margin-right: 1px; /* Adjust the margin to align icons to the right */
}

.icon-link {
    color: #ffffff;
    font-size: 24px;
    margin: 0 40px; /* Adjust the margin for spacing between icons */
    text-decoration: none;
    opacity: 0; /* Set initial opacity to make icons invisible */
    transform: translateY(-100%); /* Move icons above the container */
}

.icon-link ion-icon {
    vertical-align: middle;
}

.icon-link1 {
    color: rgb(0, 0, 0);
    font-size: 32px;
    margin: -18px;
}