body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    gap: 20px;
    margin: 0 auto;
    background-image: url("bg_image.jpg");
    background-size: cover;
    background-repeat: no-repeat; 
    font-family: "Montserrat" ,sans-serif;
    font-size: 15px;
}

.header {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: black;
    color: white;
}

.header__title {
    text-transform: uppercase;
    font-size: 40px;
    text-shadow: 4px 3px #A8A8A8;
    letter-spacing: 5px;
    margin: 0;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.picture {
    width: 20vw;
    height: auto;
    border: 1px solid black;
    margin-bottom: 10px;
    box-shadow: 5px 5px black;
}

.catalog_picture {
    width: 300px;
    height: 400px;
    box-shadow: none;
}

.text {
    margin: 0px;
}

.picture_description {    
    font-weight: 600;
}

.link {
    color: black;
    text-decoration: none;
    letter-spacing: 3px;
    border-bottom: 2px white solid;
    font-weight: 600;
}

.link:hover {
    cursor: pointer;
    border-color: transparent;
}

.download_link {
    margin: 10px 0px;
    border-color: black;
}

.list {
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 30px;
    background-color: #A8A8A8;
    border: 2px solid black;
    width: 50vw;
    list-style: none;
    font-weight: 400;
    box-shadow: 5px 5px black;
}

.description_text {
    font-weight: 600;
    text-transform: lowercase;
    margin: 10px 0px;
}

.numbered_list {
    list-style: disk;
}

.footer {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding: 20px;
    background-color: black;
    color: white;
}

.exit_link {
    color: white;
    font-weight: 600;
    text-transform: lowercase;
}

.catalog_table {
    min-width: 80vw;
    border: 2px solid black;
    background-color: #A8A8A8;
    text-align: center;
    box-shadow: 5px 5px black;
    padding: 10px 30px;
}

.product_title {
    text-transform: uppercase;
    font-weight: 800;
}

.product_link {
    border-color: black;
}

