
* {
    padding: 0px;
    margin: 0px;
    font-family: 'Poppins';
}
.galleryAuctionSection {
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 0px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
}
.galleryAuctionTitle1 {
    font-size: 44px;
    font-weight: 600;
    text-align: center;
}
.galleryAuctionTitle2 {
    font-size: 44px;
    font-weight: 800;
    padding-bottom: 40px;
    letter-spacing: 6px;
    text-align: center;
}

.galleryAuctionBlock {
    width: 95%;
    height: auto;
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
    border-radius: 8px;
    margin-bottom: 80px;
}
.galleryAuctionBlockTitle {
    font-size: 34px;
    font-weight: 800;
    padding-top: 10px;
    padding-bottom: 10px;
    letter-spacing: 6px;
    color: white;
    text-align: center;
}
.galleryAuctionContainer {
    width: 100%;
    height: auto;
    background-color: rgb(230, 230, 230);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    align-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
.galleryAuctionArtworkContainer {
    width: 360px;
    height: auto;
    min-height: 440px;
    background-color: whitesmoke;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    padding: 10px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px gray;
    transition: transform .2s;
}
.galleryAuctionArtworkContainer:hover {
    background-color: rgb(222, 241, 253);
    transform: scale(1.06);
}
.galleryAuctionArtworkImageContainer {
    width: 100%;
    height: auto;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
}
.galleryAuctionArtworkImageContainer img {
    width: auto;
    max-height: 240px;
    max-width: 300px;
    box-shadow: 2px 2px 10px gray;
}
.galleryAuctionArtworklink {
    text-decoration: none;
}
.galleryAuctionArtworkInfoContainer {
    width: 100%;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    align-content: flex-start;
}
.galleryAuctionArtworkTitle {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #333333;
}
.galleryAuctionArtworkArtist {
    font-size: 18px;
    font-weight: 400;
    color: #999999;
}
.galleryAuctionArtworkPrice {
    padding-top: 10px;
    font-size: 22px;
    font-weight: 600;
    color: rgb(145, 7, 7);
    margin-bottom: -8px;
}
.galleryAuctionArtworkPriceAmount {
    font-size: 32px;
    font-weight: 600;
    color: rgb(145, 7, 7);
    margin-bottom: -8px;
}
.galleryAuctionArtworkAuctionTime {
    font-size: 22px;
    font-weight: 400;
    color: rgb(14, 176, 204);
}
.galleryAuctionArtworkAuctionTimeText {
    padding-top: 10px;
    font-size: 20px;
    font-weight: 600;
    color: rgb(14, 176, 204);
}

.galleryAuctionGalleryLinkButton {
    text-decoration: none;
    margin: 20px;
    transition: transform .2s;
}
.galleryAuctionGalleryLinkButton div {
    width: 420px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    background-color: white;
    border-radius: 5px;
}
.galleryAuctionGalleryLinkButton p {
    font-size: 24px;
    font-weight: 700;
    color: black;
    letter-spacing: 4px;
}
.galleryAuctionGalleryLinkButton:hover {
    transform: scale(1.06);
}
.galleryAuctionGalleryLinkButton div:hover {
    background-color: rgb(222, 241, 253);
}


.auction_coming_soon {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 3px;
    text-align: center;
}
