/* Begin CSS Reset */

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

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Inter", sans-serif;
  text-align: center;
  padding: 20px;
  background-color: #1c194a;
  color: white;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* End CSS Reset */

/* Profile section */
.profile-pic {
  width: 120px;
  border-radius: 50%;
  border: 2px solid #dede23;
  margin: 20px auto;
}

.details {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
  font-size: 1.1rem;
}

.info p {
  margin: 5px 0;
  font-weight: 600;
}

/* Assignments section */
.assignments-title {
  font-weight: 600;
  font-size: 1.3rem;
  margin-top: 30px;
  text-decoration: underline;
}

.assignments-table {
  margin: 15px auto;
}

.assignments-table [href] {
  color: #1c194a;
}

.assignments-table td {
  padding: 10px 20px;
  border: 1px solid #b7af84;
  text-align: center;
}

.assignments-table a {
  text-decoration: none;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 5px;
  background-color: #dede23;
  display: inline-block;
}

.assignments-table a:hover {
  background-color: #d6c66a;
}

/* Footer */
footer {
  margin-top: 30px;
  font-size: 1rem;
}

footer a {
  text-decoration: none;
  font-weight: 600;
  color: white;
}

footer a:hover {
  text-decoration: underline;
}
