body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    margin: 0px;
    background-color: black;
    overflow: hidden;
}

/*Display->*/
#sponsoringScreen{
    height: 100vh;
    aspect-ratio: 9 / 16;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
}
/*Header->*/
header{
    height: 10vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    background-color: rgba(227,7,18,255);
}
header h1{
    font-family: sans-serif;
    font-size: 3.2vh;
    font-weight: 50;
    color: rgba(254,254,255,255);
    margin: 0px;
    margin-top: 2.5vh;
    margin-left: 1.5vh;
}
header img{
    height: 8vh;
    aspect-ratio: 16/8;
    margin-right: 1vh;
}
/*<-Header*/

/*Main->*/
main{
    height: 82.5vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}
main section{
    min-height: 15%;
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-content: start;
    border-bottom: 0.2vh solid rgba(227,7,18,255);
    row-gap: 1vh;
}
#weitereUnterstützerSection{
    border-bottom: 0px;
}

/*Sections->*/
section h1 {
    height: auto;
    width: 100%;
    box-sizing: border-box;
    font-size: 3.2vh;
    font-weight: normal;
    margin-top: 1vh;
    margin-left: 1.5vh;
    margin-bottom: 0vh;
}
#weitereUnterstützerP{
    width: 100%;
    font-size: 2.1vh;
    font-weight: 200;
    color: rgba(230,18,21,255);
    margin-top: 1vh;
    margin-left: 2vh;
    margin-bottom: 1vh;
}
/*<-Sections*/

/*Images->*/
.imageBox{
    height: fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    margin: 1.4vh;
    margin-bottom: 1vh;
    margin-top: 0px;
}


/*<-Images*/
/*<-Main*/

/*Footer->*/
footer{
    height: 7.5vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:rgba(227,7,18,255) ;
}
footer h4{
    height: fit-content;
    font-family: sans-serif;
    font-size: 1.1vh;
    font-weight: 50;
    color: rgba(254,254,255,255);
    margin: 0px;    
}
/*<-Footer*/
/*<-Display*/