body{
    width: 100%;
    min-height: 100%;
    padding: 0;
    margin: 0;
    background-image: url("../picts/background2.jpg");
}

*{
    box-sizing: border-box;
}

@font-face
{
font-family: "Font1";
src: url("../fonts/CB.otf") format("opentype");
}

@font-face
{
font-family: "Font2";
src: url("../fonts/SSFB.ttf") format("truetype");
}

:root{
    --color-gold: #fdd700;
    --color-red: #ff0000;
    --color-red-rgba: rgba(255,0,0,0.7);
    --color-header-rgba: rgba(0, 0, 0, 0.8);
    --color-white-rgba: rgba(255,255,255,0.6);
}

main{
    position: absolute;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 98vw;
    min-height: 98vh;
    left: 1vw;
    top: 1vh;
    overflow-y: auto;
    scrollbar-width: none;
}

header{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96vw;
    height: 20vh;
   
    background-color: var(--color-white-rgba);

    box-shadow: 0px 0px 10px white;
}

.headerTitle{
    font-family: "Font1";
    font-size: 10vh;
    color: var(--color-red);
    text-shadow: 2px 2px 8px white;
    /* margin-top: 2vh;; */
}

.startSection{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 96vw;
    height: 60vh;
    margin-top: 1vh;
   
    /* overflow: hidden; */
}

.splash{
    width: 96vw;
    height: 60vh;
    /* background-color: var(--color-red); */
    background-image: url("../picts/splash.jpg");
    padding: 4vh;
    overflow: auto;
    scrollbar-width: none;
    color: white;
    font-family: "Font2";
    border: 10px ridge green;
}

.splashTitle{
    font-size: 5vh;
    color: var(--color-gold);
    text-shadow: 2px 2px 5px white;
    background-color: var(--color-header-rgba);
}

.splashText{
    font-size: 4.5vh;
}

.splashPict{
    max-width: 10vw;
    max-height: 10vw;
    border-radius: 10vw;
    float: left;
    margin-right: 2vh;
    background-color: white;
}

footer{
    width: 96vw;
    height: 5vh;
    /* border: 2px solid green; */
    margin-top: 1vh;
    font-size: 1.6vh;
    text-align: right;
    color: var(--color-red);
    text-shadow: 2px 2px 5px white;
}
