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

body {
  min-height: 100vh;
  font-family:
    "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans",
    Arial, sans-serif;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
}

/* header */
header {
  width: 100%;
  max-width: 500px;
  padding: 20px;
}

.avatar {
  width: 100px;
}

.user {
  padding-bottom: 20px;
}

.bio {
  padding-bottom: 20px;
}

/* main */
.main-wraper {
  display: flex;
  flex-direction: column;
  max-width: 320px;
}

.stik {
  display: block;
  width: 270px;
  border: 2px solid black;
  border-radius: 8px;
  padding: 10px;
  margin: 15px auto;
  background-color: #f5f5f5;
  text-decoration: none;
  color: black;
  font-size: 18px;
  transition: all 0.3s ease;
}

.stik:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-10px);
}

button {
  width: 270px;
  border-radius: 8px;
  padding: 10px;
  margin: 15px;
  background-color: #ffffff;
}

/* footer/ branding */
.icon-wraper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}

.icon-wraper img {
  width: 35px;
}

footer {
  margin-top: 10px;
}
