body,
    html {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        font-family: 'Roboto', sans-serif;
        color: #fff;
        overflow: hidden;
    }

    .video-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: -1;
    }

    .video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        filter: brightness(0.5);
    }

    .content {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        text-align: center;
    }

    .profile {
        background-color: rgba(0, 0, 0, 0.3);
        padding: 60px;
        border-radius: 15px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        animation: fadeIn 2s ease-in-out;
    }

    .profile-pic {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin-bottom: 20px;
        border: 3px solid #fff;
    }

    h1 {
        margin: 10px 0;
        font-size: 2.5em;
        font-weight: 700;
    }

    .friend {
        display: flex;
        align-items: center;
        margin-top: 20px;
        background-color: rgba(255, 255, 255, 0.2);
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    .friend-pic {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-right: 15px;
        border: 2px solid #fff;
    }

    .friend-info h2 {
        margin: 0;
        font-size: 1.5em;
        font-weight: 600;
    }

    .friend-info p {
        margin: 5px 0 0;
        font-size: 1em;
        font-style: italic;
        color: #ccc;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }
    .form-container input, .form-container textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
    }
    .form-container button {
    background-color: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    }
    .form-container button:hover {
    background-color: #ffffff;
    color: rgba(0, 0, 0, 0.3);
    }