html {box-sizing: border-box;}
html, body {margin: 0; padding: 0; height: 100%; text-align: center;}
section {min-height: 100%;}
a { text-decoration: none;}
li { list-style-type: none;}

h1, h2, a, p {font-family: 'Roboto', sans-serif; font-weight: 500; color: #ffffff; text-transform: uppercase;}
h2 {  font-size: 2.5rem; padding-top: 8%; margin-bottom: 5px;}
h4 {  font-family: 'Roboto Slab', serif;  color: #ffffff;}

hr{  width: 30px;  height: 3px;  background: #ffffff;  border: 0;  margin: 0 auto 40px auto;}
li, img  {transition: all 300ms; -webkit-transition: all 300ms; -o-transition: all 300ms; -moz-transition: all 300ms}

/* HEADER *********************************/


label{ 
  display: inline-block;
  text-align: left;
}

select{
  border: 0px transparent;
  padding-left: 0px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  background-color: transparent;
}

label, select{
  width: 380px;
  margin-right: 5px;
  font-size: 1.3rem;
}

@media (max-width: 2000px) and (min-width:1100px){
  label, select{
    margin-right: 60px;
  }
}




select option {
  background: gray;
}

select:hover, section:focus{
  background-color: gray;
  border-radius: 10px;
}



.align{
  display: inline-block;
  text-align: left;
  overflow-x: hidden;
}

form .button{
  display:table;
  margin: 0 auto;
}



.infos{
  padding-right: 2%;
  padding: 2%;
}

.no-wrap{
  white-space: nowrap;
}


#kleingedrucktes{
  font-size: 1rem;
  padding: 0 2%;
}

#feedback{
  margin-bottom: 5%;
}

section summary{
  font-size: 1.5rem;
  cursor: pointer;
}

footer p{
  margin-top: 0;
}


header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0);
  opacity: .7;
  z-index: 1;
}

#Informationen, #Zeugnisdurchschnitt{
  font-family: 'Roboto Slab', serif; font-weight: 500; color: #ffffff;
}

#logo {
  float: left;
  margin-top: 5px;
  margin-left: 10px;
}

#logo img{
  height: 75px;
  width: auto;
}

#logo:hover{
  opacity: 0.5;
}


header nav {
  float: right;
  margin: 10px 40px 0 0
  
}

header nav ul li {
  float: left;
  margin-right: 25px;
}

header nav ul li a {
  font-size: 1.25rem;
}

header nav ul li:hover {
  padding-top: 5px;
}


/* HOME *********************************/

#home {
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

#home h1 {
  margin: 240px auto 0 auto;
  font-size: 6.875rem;
}

#home h2{
  margin: 0 auto 0 auto;
  font-size: 1.5625rem;
}


#home img:hover {
  opacity: 1;
}

/* ABOUT *********************************/

#about img {
  width: 240px;
  }

  #about img:hover {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
  }

#about h4 {
  font-size: 1.5625rem;
}

#about p {
  width: 700px;
  margin: 0 auto 0 auto;
}

/* WORK *********************************/

#work {
  background-color: #f0f0f0
}

#projects {
  width: 900px;
  margin: 0 auto 0 auto;
}

#Abirechner, #Fachhochschulreife, #Zeugnisdurchschnitt{
  font-family: 'Roboto', sans-serif; font-weight: 500; color: #ffffff; text-transform: uppercase;
}

@media (max-width: 500px) and (min-width:100px)
{
  #main-nav, #logo, header{
    display: none;
  }
	body h2{
    font-size: 1.5625rem;
  }
  #home h1
  {
    font-size: 3.375rem;
  }
}

@media (max-width: 800px) and (min-width:500px)
{
  #main-nav, #logo, header{
    display: none;
  }
	body h2{
    font-size: 1.5625rem;
  }
  #home h1
  {
    font-size: 4.375rem;
  }

body #modal{
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  }
}
  @media(min-width: 800px) and (max-width:1600px)
  {
  #logo{
    display: none;
  }
  #main-nav ul li a {
    display: inline-block;
    text-align: center;
    font-size: 1rem;
  }
}

/* CANVAS (Background)*/
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 50px 0;
  font-size: 1.3rem;
  color: white;
  z-index: 1;
  overflow-y: auto;
}

#Infos{
  font-family: 'Roboto', sans-serif; font-weight: 500; color: #ffffff; text-transform: uppercase;
  font-size: 1.3rem;
}
button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: none;
    color: #0f1923;
    cursor: pointer;
    position: relative;
    padding: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.875rem;
    transition: all .15s ease;
  }
  
  .button::before,
  .button::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    height: calc(50% - 5px);
    border: 1px solid #7D8082;
    transition: all .15s ease;
  }
  
  .button::before {
    top: 0;
    border-bottom-width: 0;
  }
  
  .button::after {
    bottom: 0;
    border-top-width: 0;
  }
  
  .button:active,
  .button:focus {
    outline: none;
  }
  
  .button:active::before,
  .button:active::after {
    right: 3px;
    left: 3px;
  }
  
  .button:active::before {
    top: 3px;
  }
  
  .button:active::after {
    bottom: 3px;
  }
  
  .button_lg {
    position: relative;
    display: block;
    padding: 10px 20px;
    color: #fff;
    background-color: #0f1923;
    overflow: hidden;
    box-shadow: inset 0px 0px 0px 1px transparent;
  }
  
  .button_lg::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background-color: #0f1923;
  }
  
  .button_lg::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 4px;
    height: 4px;
    background-color: #0f1923;
    transition: all .2s ease;
  }
  
  .button_sl {
    display: block;
    position: absolute;
    top: 0;
    bottom: -1px;
    left: -8px;
    width: 0;
    background-color: #ff4655;
    transform: skew(-15deg);
    transition: all .2s ease;
  }
  
  .button_text {
    position: relative;
  }
  
  .button:hover {
    color: #0f1923;
  }
  
  .button:hover .button_sl {
    width: calc(100% + 15px);
  }
  
  .button:hover .button_lg::after {
    background-color: #fff;
  }
  .fade-in-text {
    background:black;
    animation: fadeIn 5s;
    -webkit-animation: fadeIn 5s;
    -moz-animation: fadeIn 5s;
    -o-animation: fadeIn 5s;
    -ms-animation: fadeIn 5s;
  }
  
  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  @-moz-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  @-webkit-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  @-o-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  @-ms-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }


/* Modal */
#modal
{
  top: 10%;
  bottom: 10%;
  left: 15%;
  right: 15%;
  overflow-y: scroll;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  background-color: tan;
  color: black;
  border-color: black;
  border-radius: 15px;
  padding: 5px;
}


#modal-head
{
  display: flex;
  padding-left: 2%;
  padding-right: 2%;
  align-items: center;
  justify-content: space-between;
  font-size: 2.375rem;
  font-weight: bold;
}

#kursübersicht
{
  text-align: left;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 2%;
  padding-right: 2%;
}

#pflichtkurse .head
{
  color: red;
  text-transform: none;
}
#wahlpflichtkurse .head
{
  color: orangered;
  text-transform: none;
}
#freiwillige .head
{
  color: green;
  text-transform: none;
}

#normaltext, #bottomtext
{
  color: black;
  text-transform: none;
  font-weight: lighter;
}

.container {
  padding: 64px;
  position: relative;
}

.btn, .status {
  padding: 8px 16px;
  color: #fff;
  border-radius: 4px;
}

.btn {
  background: #2f4ad0;
  box-shadow: 0 8px 6px -6px #555;
  transition: all 0.4s ease;
}
.btn:hover {
  letter-spacing: 2px;
  box-shadow: none;
}

.txt {
  margin-left: 10px;
}











#link
{
  font-family: 'Roboto', sans-serif; font-weight: 500; color:#0044CC; text-transform: uppercase;
}

