@font-face {
  font-family: 'Axiforma';
  src: url('./fonts/axiforma/subset-Axiforma-Bold.woff2') format('woff2'),
    url('./fonts/axiforma/subset-Axiforma-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Axiforma';
  src: url('./fonts/axiforma/subset-Axiforma-Regular.woff2') format('woff2'),
    url('./fonts/axiforma/subset-Axiforma-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
html,
body {
  height: 100%;
  min-height: 100%;
}
body {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #efefef;
  height: 100%;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Axiforma';

  display: flex;
  height: 100vh;
  align-items: center;
}

h1 {
  font-size: 44px;
  line-height: 54px;
  color: #061928;
  font-weight: bold;
}

.banner {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.banner img {
  max-width: 100%;
}

#table {
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  transition: 0.4s;
}

#table tr td {
  font-family: 'Segoe UI', Arial, Helvetica, Tahoma, Geneva, Verdana, sans-serif;
  vertical-align: middle;
  line-height: 0;
}

#table tr td span {
  display: inline-block;
  padding: 14px 0;
  font-size: 14px;
}

#table tr td img {
  display: block;
}

#table tr td a {
  color: #282828;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}

#avatar {
  overflow: hidden;
  border-radius: 120px;
  border: 8px solid #ffc200;
  display: inline-block;
  font-size: 0;
  height: 120px;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#avatar input {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

#avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#name {
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

#profession {
  border-bottom: 1px solid #ffc200;
  padding-right: 40px;
  display: inline-block;
  line-height: 14px;
  font-size: 14px;
}

#table tr td #profession span {
  padding: 0 0 8px 0;
}

#logo {
  border-top: 1px solid #ffc200;
  border-bottom: 1px solid #ffc200;
  padding-bottom: 10px;
  padding-top: 10px;
  margin-bottom: 6px;
}

#infos {
  margin: 8px 0;
}

#button {
  height: 80px;
}

#loading {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid #f9f9f9;
  border-top-color: #061928;
  animation: loading 0.5s linear infinite;
}

@keyframes loading {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

#home {
  transition: all 1s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: #fff;
}

.hide {
  transform: translateY(-100%);
  opacity: 0;
}

.exit {
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 1px;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 25%);
  transition: background-color 0.218s, border-color 0.218s, box-shadow 0.218s;
  background-color: #fff;
  color: #262626;
  cursor: pointer;
  outline: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  z-index: 101;
  padding: 10px 20px;
  border-radius: 4px;
  font-family: 'Axiforma';
  user-select: none;
  display: none;
}

.actions {
  position: absolute;
}
