@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  font-family: "Montserrat", serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.5s ease-in-out;
  padding: 0 2rem;
  position: relative;
}

main {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-items: center;
}

#profile-photo {
  background-color: red;
  height: 10rem;
  border-radius: 50%;
  width: 10rem;
  overflow: hidden;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
#contact {
  display: flex;
  flex-direction: column;
}
ul {
  display: flex;
  margin: auto;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 1.2rem;
}
ul a {
  height: 1rem;
  width: 1rem;
  padding: 1.3rem;
  border: 1px solid gray;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: black;
}
ul a:hover {
  background: gray;
  color: white;
  transition: all 0.3s ease-in-out;
}
p {
  max-width: 30rem;
  line-height: 150%;
}

#current-time {
  position: absolute;
  top: 2rem;
  left: 2rem;
}
