html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(22, 22, 61);
  color: var(hsl(0deg, 0%, 100%));
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.1;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.75rem, 1rem + 2vw, 2.5rem);
}

h2 {
  font-size: clamp(1.375rem, 0.875rem + 1.5vw, 2.25rem);
}

p {
  font-size: 1rem;
  margin-top: 0;
}

a, a:visited, a:active {
  text-decoration: none;
  margin-top: 0;
}

body {
  font-family: cursive;
  background-color: black;
  height: 100vh;
}

h1 {
  color: red;
}

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

.line {
  margin: 0 auto;
  width: 80%;
  background-color: red;
  height: 2px;
  border-radius: 5px;
  margin-top: -10px;
}

.box {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  flex-direction: column;
  padding: 1.5rem 2rem;
  width: 70%;
  border-radius: 10px;
}

h4 {
  font-family: "roboto";
  text-transform: uppercase;
}

#name {
  margin-top: 20px;
  margin-bottom: 5px;
}

#job {
  margin-top: 5px;
  margin-bottom: 20px;
  font-weight: 300;
  color: red;
}

p {
  text-align: center;
}

#pic {
  height: 150px;
  width: 150px;
  border-radius: 200px;
  background-color: red;
  background-image: url(/images/1.jpg);
  background-size: cover;
}

img {
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.buttons {
  flex-direction: column;
  margin-bottom: 20px;
}

button {
  padding: 5px 10px;
  border-radius: 5px;
  color: red;
  text-transform: capitalize;
  border-radius: 5px;
  border: 1px solid red;
  cursor: pointer;
  transition: all 0.5s;
}

button:hover {
  color: black;
  background-color: hsl(205deg, 78%, 60%);
}/*# sourceMappingURL=style.css.map */