:root{
    color: black;
    background-color: #1f1e20;;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --resume-view-height: min(calc(100vh - 120px), 1096px);
  --panel-outer-width: min(96vw, 900px);
  --panel-inner-width: min(100%, 860px);
  --business-card-scale: 0.78;
  --embed-row-gap: 0.75rem;
  --business-card-bottom-gap: 0.6rem;
  --business-card-side-gap: 0.6rem;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1{
  font-family: "Tahoma", sans-serif;
  text-align: center;
  color: white;
  margin: 1rem 0 2rem;
}

.icons-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.icons-row a {
  transition: opacity 0.2s;
}
.rosehulman-icons {
  text-decoration: none;
  display: inline-flex;
  transition: opacity 0.2s;
}

.icons-row a:hover {
  opacity: 0.7;
}

.rose-hulman-icons:hover{
  opacity: 0.7;
}

.resume-layout {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  width: min(98vw, 1900px);
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.resume-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: var(--panel-outer-width);
  padding: 0;
}

.resume-left h1 {
  margin: 0 0 0.8rem;
  text-align: center;
}

.resume-left-card {
  width: var(--panel-inner-width);
  height: var(--resume-view-height);
  display: flex;
  flex-direction: column;
  background-color: rgb(207, 207, 207);
  border-radius: 14px;
  padding: 1rem 1.1rem 1.1rem;
  box-sizing: border-box;
  overflow: hidden;
}

.left-section-divider {
  border: 0;
  border-top: 1px solid black;
  margin: 0.85rem 0 0.85rem;
}

.resume-copy-text {
  margin: 0;
  line-height: 1.65;
  text-align: center;
}

.resume-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: var(--panel-outer-width);
  padding: 0;
}

.resume {
  width: var(--panel-inner-width);
  height: var(--resume-view-height);
  border: 0;
  border-radius: 12px;
  overflow: hidden;
}

.social-embed-row {
  width: calc(100% + 2.2rem - (var(--business-card-side-gap) * 2));
  flex: 1;
  min-height: 0;
  margin: 0 calc(-1.1rem + var(--business-card-side-gap)) calc(-1.1rem + var(--business-card-bottom-gap));
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  grid-template-rows: minmax(400px, 1.5fr) minmax(320px, 1fr);
  align-items: stretch;
  gap: var(--embed-row-gap);
}

.business-card-wrap {
  grid-row: 1 / 3;
  grid-column: 1;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  flex-direction: column;
}

.reel-embed {
  background: #FFF;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 0 1px 0 rgba(0,0,0,0.5), 0 1px 10px 0 rgba(0,0,0,0.15);
  margin: 1px;
  max-width: 540px;
  min-width: 326px;
  padding: 0;
  width: 99.375%;
  width: -webkit-calc(100% - 2px);
  width: calc(100% - 2px);
  border-radius: 20px;
}

.instagram-media {
  margin: 0 auto;
  max-width: 540px;
  height: 450px;
}

.instagram-media p {
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 17px;
  margin: 0;
  padding: 8px 0 7px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.instagram-media p a {
  color: #c9c8cd;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 17px;
  text-decoration: none;
}

.rolling-info {
  grid-column: 2;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.rolling-info:nth-child(2) {
  grid-row: 1;
}

.rolling-info:nth-child(3) {
  grid-row: 2;
}

.business-card{
  display: block;
  width: calc(100% / var(--business-card-scale));
  height: calc(100% / var(--business-card-scale));
  border: 0;
  border-radius: 12px;
  transform: scale(var(--business-card-scale));
  transform-origin: top left;
}

.linkedin-embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
  min-width: 0;
}

