@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root{
  --wigxPink: #ff4c94;
  --cultured: #f5f5f5;
  --eerieBlack: #181818;
  --vDarkGray: #2e2e2e;
  --darkGray: #707070;
  --lightGray: #e4e4e4;
  --silver: #c3c3c3;
}

html,body{
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--cultured);
  color: var(--eearieBlack);
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}

.app{
  padding: 24px;
  width: calc(100% - 48px);
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

h1,h2,h3,h4,h5,h6{
  font-size: 24px;
  color: var(--eerieBlack);
  padding: 0;
  margin: 0;
}

a,p{
  padding: 0;
  margin: 0;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

a:hover{
  cursor: pointer;
  color: var(--wigxPink);
}

.topBar{
  padding: 16px 24px;
  width: calc(100% - 48px);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 8px;
  background-color: var(--cultured);
  border: 1px solid var(--silver);
  border-radius: 16px;
}

.hero{
  padding: 16px 24px;
  width: calc(100% - 48px);
  height: auto;
  border: 1px solid var(--silver);
  border-radius: 24px;
}

.hero img{
  width: 100%;
  height: 294px;
  object-fit: cover;
  border-radius: 16px;
}

.hero p{
  width: 100%;
}

.slide{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  flex-wrap: wrap;
  gap: 16px;
}

.sponsors{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px;
  width: calc(100% - 48px);
  height: auto;
  border: 1px solid var(--silver);
  border-radius: 24px;
}

.sponsors img{
  width: 45%;
  max-width: 314px;
  border-radius: 16px;
  border: 1px solid var(--wigxPink);
}

.sponsorsGrid{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.talks{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px;
  width: calc(100% - 48px);
  height: auto;
  border: 1px solid var(--silver);
  border-radius: 24px;
}

.footer{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px;
  width: calc(100% - 48px);
  height: auto;
  border: 1px solid var(--silver);
  border-radius: 24px;
  background-color: var(--eerieBlack);
  color: var(--cultured);
}

.bottomBar{
  position: fixed;
  bottom: 24px;
  padding: 16px 24px;
  width: auto;
  left: calc(50% - 150px);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 18px;
  background-color: var(--cultured);
  border: 1px solid var(--silver);
  border-radius: 16px;
}

.bottomBar a{
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px
}

button{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 18px;
  font-weight: 600;
  border: 1px solid var(--wigxPink);
  border-radius: 24px;
  background-color: var(--wigxPink);
  color: var(--cultured);
}

button:hover{
  cursor: pointer;
  background-color: var(--eerieBlack);
}