diff --git a/src/App/App.css b/src/App/App.css
index 6c52f5e3d0317ba90436d9319ca344df92f40a7c..09f1ccae4fc4e4a26105d273be8283f71cc9c75b 100644
--- a/src/App/App.css
+++ b/src/App/App.css
@@ -3827,4 +3827,23 @@ height: min-content !important;
   -webkit-text-fill-color: var(--very-light-purple);
   -webkit-text-stroke-width: 2px;
   -webkit-text-stroke-color: var(--text-primary);
+}
+
+.h5-box{
+  display: grid;
+  justify-content: center;
+}
+
+.h5{
+  color: var(--text-primary) !important;
+  font-size: 1.3rem !important;
+  line-height: 1.0;
+  word-spacing: 1px !important;
+  display: grid;
+  grid-template-rows: 27px 0;
+  grid-gap: 20px;
+  align-items: center;
+  letter-spacing: 1px;
+  text-transform: uppercase;
+  align-self: center;
 }
\ No newline at end of file
diff --git a/src/components/Headings.tsx b/src/components/Headings.tsx
index 6a98c99663800eef78f160afa58c3a9b7df615bf..66d8cb7d2d935a4da91d5c3a25afca981db79174 100644
--- a/src/components/Headings.tsx
+++ b/src/components/Headings.tsx
@@ -109,6 +109,21 @@ export function H4({text, id}:{text: string, id?: string}){
         
     )
 }
+export function H5({text, id}:{text: string, id?: string}){
+    var idtext: string; 
+    if (id) {
+        idtext = id; 
+    }
+    else{
+        idtext = stringToSlug(text); 
+    }
+    return(
+        <div className="h5-box">
+            <h5 className="h5" id={idtext}> {text} </h5>  
+        </div>
+        
+    )
+}
 
 
 export function Hhighlight({children}:{children: React.ReactNode}){
diff --git a/src/components/Pdfs.tsx b/src/components/Pdfs.tsx
index 09f47c66832fbcb9093b5615379364872c8d1e9e..c324859aa9e25635e1371720898c091bec8eaf66 100644
--- a/src/components/Pdfs.tsx
+++ b/src/components/Pdfs.tsx
@@ -1,5 +1,4 @@
 import { ButtonOne, DownloadLink } from "./Buttons"
-import { H2 } from "./Headings"
 
 
 export function PDF({link, name}: {link: string, name:string}){
@@ -27,7 +26,6 @@ export function TwoLinePDF({link, name}: {link: string, name:string}){
 export default function BFHpdf(){
     return(
     <>
-        <H2 text="PDF for Download" id="pdfH"></H2>
         <div className="row align-items-center" style={{marginTop: "5vh", marginBottom: "5vh"}}>
           <div className="col">
             <ButtonOne text="Flyers" open="flyers"></ButtonOne>
diff --git a/src/contents/Contribution/BFH/bfh-about.tsx b/src/contents/Contribution/BFH/bfh-about.tsx
index 7b6d9ac7d21ce78f4f03d4f766233aa380084c19..43763dba0665c018c04cea7ef14644c058fb1528 100644
--- a/src/contents/Contribution/BFH/bfh-about.tsx
+++ b/src/contents/Contribution/BFH/bfh-about.tsx
@@ -1,5 +1,5 @@
 import { Certificate } from "../../../components/poster";
-import {  H4 } from "../../../components/Headings";
+import {  H4, H5 } from "../../../components/Headings";
 import { BlockQuoteB } from "../../../components/Quotes";
 
 const haken = <span className="bfh-haken"> <big>&#x2713;</big> </span>; 
@@ -38,7 +38,7 @@ export function About(){
       <p> This album isn't just for the Grand Jamboree – you can also collect stickers from non-participating teams on the backside of the album. Let's connect, share, and make memories together! </p>
       <H4 text="Awards and Winners of the BFH Competition "/>
       <p>The event culminated in an Awards Ceremony celebrating excellence in creativity, teamwork, and innovation. Our judges, using their experience from past iGEM years, evaluated the teams' performances. The heartfelt winner, recognized for their outstanding contribution and spirit, was the team that truly embodied the values of the iGEM community. </p>
-      <H4 text="Best Presentation"/>
+      <H5 text="Best Presentation"/>
       {/* https://static.igem.wiki/teams/5247/design/icons/first-place.svg */}
       <div className="small-row winners">
         <div className="col-1">
@@ -84,7 +84,7 @@ export function About(){
         </div>
       </div>
       <br/>
-      <H4 text="Best Poster Exhibition Booth"/>
+      <H5 text="Best Poster Exhibition Booth"/>
       <div className="small-row winners">
         <div className="col-1">
           <img className="winner-img" src="https://static.igem.wiki/teams/5247/design/icons/first-place.svg "/>
diff --git a/src/contents/Contribution/BFH/postergallery.tsx b/src/contents/Contribution/BFH/postergallery.tsx
index 3c4160a030eddc5a72e92fe4c7bfaf9e77dc788e..4fc112e7221d0811203b894efa6a4c12429473bc 100644
--- a/src/contents/Contribution/BFH/postergallery.tsx
+++ b/src/contents/Contribution/BFH/postergallery.tsx
@@ -1,10 +1,9 @@
-import { H2 } from "../../../components/Headings";
+
 import { PosterRow, Poster } from "../../../components/poster";
 
 export function PosterGallery(){
     return(
       <>
-      <H2 text="Virtual Poster Exhibition" id="posterH"></H2>
       <PosterRow
       postername1="bielefeld"
       postername2="helsinki"