.home-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: 100px;
    margin-left: 60px;
    scroll-margin-top: 80px;
}

.rectangle-home {
    background-color: #034C53;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0,1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 50%;
    height: auto;
    border: solid 2px black;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}

#edit-button-home {
    color: lavender;
    border: solid 2px lavender;
    border-radius: 20px;
    background-color: transparent;
    width: 30px;
    height: 30px;
    align-self: flex-end;
    cursor: pointer;
}

#edit-button-home:hover {
    transform: scale(1.3);
}

#edit-btn {
    margin-top: 30%;
    width: 100%;
}

.profile-picture {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateY(0); }
    50% { transform: translateY(-10px) rotateY(10deg); }
}

.home-section h1 {
    color: lavender;
    font-size: 2.5em;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeIn 5s forwards;
}

.home-section p {
    font-size: 1.2em;
    color: lavender;
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}