@import url('https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

body {
    font-family: 'K2D', Arial, sans-serif;
    background-color: #FBFFF4;
}

h1,h2,h3,h4,h5,p,a {
    color: #1C5E33;
}

a:hover, .dropdown-item:hover, .nav-link:hover{
    color: #5abc7c !important;
}

.alert {
    text-align: center;
}

.btn {
    display: inline-block;
    background-color: #cee4ac;
}

.btn:hover {
    color: #5abc7c;
    background-color: #cee4ac;
}

.btn-danger {
    color: white;
    background-color: #d94a4a;
    border: #d94a4a;
}

.btn-danger:hover {
    color: white;
    background-color: #be2b2b;
}

.btn-light {
    color: black;
    background-color: #e8e8e8;
    border: #e8e8e8;
}

.btn-light:hover {
    color: black;
    background-color: lightgray;
}

.btn-round {
    display: block;
    line-height: 10px;
    margin-top: auto;
    margin-bottom: auto;
    justify-content: center;
    align-items: center;
}

.btn-square {
    margin-top: auto;
    margin-bottom: auto;
    justify-content: center;
    align-items: center;
}

.container {
    padding: 40px 0;
}

.hex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hexagon {
    position: relative;
    width: 120px;
    height: 150px;
    margin: 50px;
    background-color: #1C5E33;
    margin: 20px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 5px solid #1C5E33;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1C5E33;
    font-weight: bold;
    font-size: 16px;
    background-color: transparent;
}

.hexagon:hover {
    background-color: #1C5E33;
    opacity: 0.5;
}

.image{
    opacity: 1;
    width:150px;
    height:150px;
}

#collection-options::after {
    display: none;
}

hr{
    border: #033a16 1px dashed;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #cee1b1;
}

::-webkit-scrollbar-thumb {
    background: #a2d15c;
}

::-webkit-scrollbar-thumb:hover {
    background: #629716;
}

.card-title, .card-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    margin-top: 0;
}
.one-line {
    -webkit-line-clamp: 1;
}
.card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}
