.product {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 20px;
    height: 100vh;
    margin-bottom: 160px;
    margin-top: 80px;
}

.product_logos {
    width: 320px;
    height: auto;
}

.product_subtitle {
    font-size: 28px;
    text-align: center;
    font-weight: 500;
    margin: 12px;
}

.product_description {
    font-size: 20px;
    margin-bottom: 40px;
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-break: auto;
}

.product_button {
    background-color: white;
    color: #020817;
    border: 2px solid #020817;
    padding: 12px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.product_button:hover {
    background-color: #020817;
    color: white;
    border: 2px solid #020817;
    padding: 14px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}