#home {
    min-height: 100dvh;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-bg);
    color: white;
    background-image: linear-gradient(to right, rgb(0, 0, 0) , rgb(47, 47, 47));
    background-position: bottom;
}

.home__title {
    font-size: 28px;
}

.home__introduction {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 10px;
}

.home__summary {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.home__summary-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.home__summary-h1 {
    font-size: 30px;
}

.home__summary-h3 {
    font-size: 12px;
    text-align: left;
}

.home__download {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background-color: #383838;
    color: white;
    padding: 10px;
    margin: 10px 0;
    width: fit-content;
    text-decoration: none;
    font-size: 14px;
}

.attachment-icon {
    height: 18px;
}

.picture {
    width: 100%;
}

#read-more {
    color: white;
}