* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    overflow: hidden;
    background-color: #ff9c9c;
}

.container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.name {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-direction: column;
}

.button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background-color: #000000;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.logo {
    width: 20px;
    height: 20px;
    margin-bottom: -4px;
}
.button:hover {
    background-color: #0056b3;
}

/* Floating Images */
.floating-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-img {
    position: absolute;
    width: 150px;
    height: 150px;
}
