* {
    margin: 0;
    padding: 0;
    /*box-sizing: border-box;
    font-family: 'Roboto', sans-serif;*/
    font-family: 'Poppins', sans-serif;
    font-size: 0.98em;
}

body {
    font-family: Arial, sans-serif;
    line-height: 2;
    /*background-color: #f9f9f9;*/
    color: #333;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    background-color: rgb(251, 247, 217);
}

main {
    display: flex;
    flex-grow: 1;
    flex-direction: row;
    gap: 1rem;
    height: calc(100vh - 4rem);
    overflow: hidden;
    padding: 0;
    margin: 0;
}

a {
    /*text-decoration: none;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;*/
    color: rgb(65, 93, 74);
    text-decoration: underline;
    text-decoration-color: rgba(86, 136, 100, 0.466);
    text-decoration-thickness: 0.2px;
}

a:hover {
    text-decoration: underline;
}

/*span.high {
    font-weight: 900;
    color: rgb(9, 79, 32);
}*/

.left-column {
    flex: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    padding-top: 150px;
    overflow: hidden;
    width: 100%;
}

.header {
    text-align: center;
    
    color: rgb(5, 72, 27);
    /*background-color: #4CAF50;
    padding: 1rem 0;*/
    flex-shrink: 0;

    width: 100%;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

h1 {
    font-size: 2.2rem;
    /*font-family: "Rubik Vinyl", serif;
    font-family: "Flavors", serif;*/
    
    font-family: "Kranky", serif;
    font-weight: 600;
    font-style: normal;
}

.left-column ul {
    margin-top: 10px;
    list-style: none;
    font-style: italic;
}

.left-column {
    flex: 3;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    overflow: hidden;
    align-items: center;
    justify-content: flex-start;
    padding-left: 15px;
    text-align: center;
}

.facts {
    font-style: italic;
}

/*.facts-list {
    list-style-type: disc;
    font-size: 1rem;
    text-align: left;
    padding: 0;
    margin: 0;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}*/



.profile-pic img {
    width: 150px;
    height: 150px;
    /*border-radius: 60%;
    border: 3px solid #4CAF50;
    clip-path: polygon(0% 0%, 100% 0%,
    100% 90%, 90% 93%, 80% 97%, 70% 99%, 60% 99.9%,
    50% 100%, 40% 99.9%, 30% 99%, 20% 97%, 10% 93%, 0% 90%);*/
    clip-path: polygon(0% 0%, 100% 0%,
    100% 90%, 90% 93%, 80% 97%, 70% 99%, 60% 99.9%,
    50% 100%, 40% 99.9%, 30% 99%, 20% 97%, 10% 93%, 0% 90%);
    object-fit:scale-down;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}


.facts-list {
    list-style-type: disc;
    /*font-size: 1rem;*/
    text-align: left;
    padding: 0;
    margin: 0;
}


.bike-drawing {
    margin-top: auto;
}

.bike-drawing img {
    width: auto;
    max-height: 200px; /* Adjust size dynamically */
    object-fit: contain;
    margin: 0;
    align-self: flex-end; /* Aligns the bike to the bottom */
}

.right-column {
    flex: 7;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow-y: auto; /* Allows scrolling for the content */
    height: calc(100vh - 4rem) - 1em; /* Fills the remaining height */
    margin: 20px;
}

.right-column section {
    margin-bottom: 1.5rem;
}

.right-column h2 {
    /*font-size: 1rem;*/
    color: #064708;
    margin-bottom: 0.2rem;
    font-style: normal;
}

.right-column p,
.right-column ul {
    /*font-size: 1rem;*/
}

.right-column ul {
    list-style: disc;
    padding-left: 1.5rem;
}

/*.right-column a {
    color: rgba(0, 0, 0, 0.836);
    text-decoration: none;
    font-weight: 550;
}*/


.right-column p#extra {
    margin-bottom: 10px;
    font-style: italic;
}

/* Recommendations List */
section.recommendations ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

section.recommendations ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

section.recommendations ul li::before {
    content: "📌";
    font-size: 0.55em;
    position: absolute;
    left: 5px;
    top: 6px;
    color: rgba(16, 15, 15, 0.806);
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        flex-direction: column;
    }

    .left-column, .right-column {
        flex: 1;
    }

    .bike-drawing img {
        max-height: 80px; /* Resize bike for smaller screens */
    }
}
