/*CSS reset*/

@font-face {
  font-family: "Dauphine Regular.otf";
  src: url("Dauphine Regular.otf");
}

@font-face {
  font-family: "Dauphine Italic.otf";
  src: url("Dauphine Italic.otf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-size: 200%;
    background-color: black;
    color: rgb(228, 233, 238);
  }
  
  ol,
  ul {
    list-style: none;
  }
  
  img,
  video {
    width: 25%;
    padding-top: 50px;
    padding: 20px;
  }
  
  a {
    color: black;
    text-decoration: none;
  }

  /*CSS meine styles kommen jetzt hier runter*/

  h1{
    font-size: 300%;
    color: white;
    background-color: black;
    font-family: "Dauphine Regular.otf";
    margin-left: 100px;
    margin-top: 50px;
  }

  p{
    font-family: "Dauphine Regular.otf";
    font-size: 75%;
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 50px;
  }

  h2{
    font-family: "Dauphine Italic.otf";
    font-size: 60%;
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 50px;
  }

  h4{
    font-family: "Dauphine Regular.otf";
    font-size: 600%;
    margin-left: 100px;
    margin-top: 200px;
  }

  img{
    width: 25%;
    margin-top: 100px;
    margin-left: 50px;
    margin-right: 50px;
  }

  a{
    font-family: "Dauphine Regular.otf";
    color: aliceblue;
    font-size: 40%;
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 50px;
  }
