.d_info-section {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    width: 100%;
    height: fit-content;
    justify-content: center;
}

footer {
    position: relative;
    bottom: 0;
    left: 0;
    padding: 20px;
    margin-top: 500px;
    background-color: #1f6dff;
    color: white;
    max-height: 250px;
}

.d-info {
    justify-self: center;
    border-top: 10px solid rgb(60, 137, 253);
    border-bottom: 1px solid rgb(60, 137, 253);
    border-left: 1px solid rgb(60, 137, 253);
    border-right: 1px solid rgb(60, 137, 253);
    background-color: rgb(255, 255, 255);
    height: fit-content;
    width: 780px;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.135);
    transition: box-shadow 0.1s ease-in, transform 0.1s ease-in;
}

.d-info:hover {
    box-shadow: 0 50px 80px rgba(0, 0, 0, 0.101);
}

.d_info-basic-infos {
    display: flex;
    gap: 20px;
    overflow: hidden;
}

.d_info-basic-infos h5 {
    background-color: rgb(198, 198, 198);
    box-sizing: border-box;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 15px;
}

.d_info-paragraph {
    text-align: justify;
}

.d_info-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: 0 0;
    border-radius: 15px;
}

.d_info-label-image {
    font-size: 10pt;
}

.d_info-label-image > a {
    text-decoration: underline;
    color: rgb(43, 99, 255);
}

.facebook-share {
    position: relative;
    border: none;
    background-color: rgb(72, 124, 255);
    color: white;
    font-size: 15pt;
    font-weight: 600;
    padding: 15px;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.facebook-share:hover {
    background-color: rgb(39, 100, 255);
}

.copy-link-button {
    background-color: rgb(248, 248, 248);
    border: 3px solid rgb(39, 100, 255);
    border-radius: 100px;
    color: rgb(39, 100, 255);
    font-weight: 600;
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.copy-link-button:hover {
    background-color: rgb(39, 100, 255);
    color: white;
}

.copy-link-button.copied {
    background-color: rgb(0, 126, 84);
    border: 3px solid rgb(0, 126, 84);;
    color: white;
    cursor: default;
}

.copy-link-button.only-icon .icon {
    display: none;
}