* {
    margin: 0;
    padding: 0;
  }
  body {
    background-color: black;
    font-family: arial;
  }
  
  header {
    height: 300px;
    margin: 0 auto;
  }
  .log {
    position:absolute;
    margin: 0 auto;
    margin-top: 100px;
    margin-left: 288px;
    z-index: 0;
    
  }
  .back {
    position: relative;
    z-index: -4;
    border: 10px #238EC4;
  }
  .img {
    height: auto;
    width: fit-content;
    margin: 0 auto;
    background: linear-gradient(to bottom, rgba(255,0,0,0) 75%, rgb(0, 0, 0));
    
  }
 .cover {
  display: flex;
    background-color: rgba(216, 237, 255, 0.877);
    border-radius: 5px;
    height: auto;
    width: 1000px;
    margin: 0 auto;
    box-shadow: 0 0 10px black;
 }
 p {
    margin: 5px 0;
    text-indent: 3ch;
  }
  
 .list {
    float: inline-start;
    padding: 30px 20px;
    height: 30px;
    width: fit-content;
 }
 .button {
  border-radius: 10px;
  height: 25px;
  width: 180px;
  transition: 0.5s;
  text-align: center;
  margin: 1px 0;
 }
 .button:hover  {
  background-color: #0066ff4a;
 }
 a {
  color: rgb(63, 58, 52);
  text-decoration: none;
 }
 a:hover {
  color: rgb(63, 58, 52);
 }
 .text {
    border-left: 2px solid grey;
    height: auto;
    font-weight: 500;
    margin: 0 0 0 auto;
    width: 700px;
    padding: 40px 30px;
    color: rgb(63, 58, 52);
 }
 footer {
    height: 100px;
 }