
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(130,170,230);
}

.main {
    height: 100vh;
    padding: 5%;
    box-sizing: full;
    display: grid;
    place-items: center;
    height: fit-content;
}

.hor {
    display: flex;
    flex-direction: row;
}

.cell {
    margin: 2%;
    font-size: 16pt;
    color: rgb(100,60,0);
}

.container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

.omnious {
    color: rgb(255,0,55);
    text-shadow: 1px 1px 4px #A00000
}


section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-snap-align: end;
    scroll-snap-stop: normal;
}

h1, h2 {
    color: rgb(255,255,205);
    text-shadow: 1px 1px 4px #000
}

a {
    color: rgb(255,255,255);
    text-shadow: 1px 1px 4px #000
}

.RGPEP {
    background-color: rgb(60,160,100);
}

.QCD {
    background-color: rgb(155,0,0);
    background-image: url("graphics/qcd.png");
    background-size: cover;
}

.nuclear {
    background-color: rgb(0,0,200);
    background-image: url("graphics/nucleus.png");
    background-size: cover;
}

.molecular {
    background-color: rgb(0,200,0);
    background-image: url("graphics/molecule.png");
    background-size: cover;
}

.atomic {
    background-color: rgb(200,200,0);
    background-image: url("graphics/atom.png");
    background-size: cover;
}

.matrix {
    background-color: rgb(116,116,116);
}

.last {
    background-color: rgb(64,64,64);
}

