body {
  font-family: Arial, sans-serif;
  background-color: #333;
  color: #f4f4f4;
  margin: 0;
  padding: 0;
}


.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;

  .logo {
    display: inline-block;
    font-family: "Permanent Marker", cursive;
    font-weight: 400;
    font-style: normal;
    position: relative;

    .text {
      position: absolute;
      top: -25px;
      right: -80px;
      transform: rotate(340deg);
      background: white;
      color: black;
      text-align: center;
      padding: 5px 10px;
      border-radius: 15px;
    }

    .text::before {
      content: "";
      position: absolute;
      top: 6px;
      left: -17px;
      width: 0;
      height: 0;
      border: 10px solid transparent;
      border-right-color: #fff;
    }
  }

  img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
  }
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #222;
  color: #f4f4f4;
  text-align: center;
  padding: 10px 0;

  a {
    color: #c5c5c5;
    text-decoration: none;
  }
  a:hover {
    color: #fff;
  }
}