.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background-color: #f4f4f4;
}

.pougne-section {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 2rem;
    text-align: center;
    margin-top: 20px;
}

.content {
    width: 100%;
}

.pougne-section h1 {
    font-size: 2rem;
    color: #630063;
}

.pougne-section p {
    font-size: 1rem;
    color: #555;
    text-align: center;
}




.drives-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-evenly;
}

.drive-link {
    display: flex;
    padding: 0.5rem 1rem;
    background-color: white;
    color: white;
    text-decoration: none;
    align-items: center;
    width: 20%;
    min-width: 175px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    justify-content: center;
}

.drive-link p {
    color: white;
    margin: 0;
}

.drive-link:hover {
    transform: translateY(-5px);
}

footer {
    color: white;
    text-align: center;
    background-color: black;
}

footer p {
    margin-bottom: 0;
    text-align: center;
}


@media screen and (max-width: 500px){
    .drive-link {
        width: 90%;
        max-width: 100%;
    }

}
