.doto {
  font-family: "Doto", sans-serif;
  font-optical-sizing: auto;
  font-weight:normal;
  font-style: normal;
  font-variation-settings:
    "ROND" 0;
}

.jersey-10-regular {
  font-family: "Jersey 10", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

html, body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    color: white;
    background-color: #101010;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.page{
    display: grid; 
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "header" "content" "footer" ;
    width: 100%;
    height: 100vh;
    align-items:center;
    justify-items:center;
    box-sizing: border-box;
    padding: 0;
}        

.header {
    display: flex;
    grid-area: header;
    justify-content: center;
    margin: 1rem 0 0 0;
    padding: 0 0 0 0;
    font-family: "Jersey 10";
    font-size: 3rem;
    color: white;
}

h1 {
    font-family: "Jersey 10";
    font-size: 3rem;
    color: white;
    padding: 0 0 0 0;
    margin: 0 auto;
}

.ueberschrift {
    font-family: "Jersey 10";
    font-size: 3rem;
    color: white;
    padding: 0 0 0 0;
}

.content{
    display: flex;
    width: 90%;
    height: fit-content;
    margin: 0 0.5rem;
    padding: 2rem 0.5rem;
    gap: 1rem;
    flex-direction: column;
    grid-area: content;
   
}

.uebermich {
    display: flex;
    height: fit-content;
    margin: 0 0.5rem 1rem 0.5rem;
    padding: 1rem 1rem 1rem 1rem;
    gap: 0.5rem;
    border-radius: 10px;
    background-color: #ffffff2d;
    flex-direction: column;
    font-family: "Doto";
    font-size: 1rem;
    color: white;

}

.Social{
    display: flex;
    height: fit-content;
    margin: 0 0.5rem;
    padding: 1rem 1rem 1rem 1rem;
    gap: 0.5rem;
    border-radius: 10px;
    background-color: #ffffff2d;
    flex-direction: column;
}

.beschreibung{
    display: flex;
    width: 100%;
    font-family: "Doto";
    font-size: 1rem;
    color:#ffffff;
    
    align-content: center;
    margin: 0 0 1rem 0;
}

.link{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.button{
    display: flex;
    justify-content: center;
    align-content: center;
    font-family:  "Doto";
    font-size: 1rem;
    background-color: #AEFF00;
    border: 1px solid;
    border-color: #AEFF00;
    border-radius: 10px;
    padding: 1rem 1rem 1rem 1rem;
}

.button:hover{
    background-color: #ffffff;
    font-weight: bolder;
    border-color: white;
    box-shadow: 0 5px 10px hsla(0, 0%, 100%, 0.352);
}

.footer{
    display: flex;
    grid-area: footer;
    font-family: "Jersey 10";
    font-size: 2rem;
    align-content: flex-start;
} 

@media screen and (min-width: 600px) {

}