@font-face {
  font-family: Dosis;
  src: url(../fonts/Dosis-VariableFont_wght.ttf);
}

.navigationDrawer{
  background: #2d2b2d;
  padding: 1.5%;
  position: absolute;
  top: 94%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 25px;
  display: flex;
  flex-direction: row;
  box-shadow: 2.5px 2.5px  8px #323232;
}

.dot {
  height: 0.55vh;
  width: 25%;
  background-color: white;
  border-radius: 15vw;
}

.taskBarContainer{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 0.25vw;
  margin-left: 0.25vw;
  background-color: transparent;
  border: transparent;
}

.taskBarContainer:focus{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 0.25vw;
  margin-left: 0.25vw;
}


.navItem{
  border-radius: 10px;
  width: 72px;
  height: 72px;
  transition: 0.25s;
  cursor: pointer;
}

.navItem:hover{
  border-radius: 10px;
  width: 80px;
  height: 80px;
  transition: 0.25s;
  padding: 2.5px;
  background-color: #404040;
}

html {
  background: #ffcc99;
}

* {
  margin: 0;
  padding: 0;
  font-family: Dosis;
}

.content {
  margin-left: .5vw;
  display: flex;
  flex-direction: column;
  position: relative;
  top: 47.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: space-between;
  align-items: center;
  overflow-x: hidden;
}

html{
  scroll-behavior: smooth;
}

.contentText{
  font-size: 1.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
  margin-top: 1vh;
}

.centerPage{
  padding-top: 1.5vh;
  font-size: 1.05em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1vh;
  height: 100%;
  flex-basis: 1000px;
  text-align: center;
}

.window{
	margin-left: 2.5vw;
	margin-top: 1vh;
	width: 95vw;
	background-color: white;
	border-radius: 15px;
	height: 80vh;
	box-shadow: 2.5px 2.5px  10px #323232;
  overflow: hidden
}

.windowDecoration{
  display: flex;
  padding-top: 1vh;
  padding-bottom: 1vh;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: whitesmoke;
  background-color: #2d2b2d;
  border-radius: 15px 15px 0px 0px;
}

.windowDecoration img{
  size: 30px;
  padding-left: 2.5vw;
  padding-right: 2.5vw;
}

.heroImage{
  background-color: lightgray;
  width: auto;
  height: 26vh;
  overflow: hidden;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.folderBackground{
	overflow: hidden;
	display: flex;
	width: 0px;
	justify-content: space-between;
	background-color: #545054;
	border-radius: 15px;
	flex-direction: row;
	transition: 0.5s;
}

.toggleSelected{
  border-radius: 16px;
  width: 64px;
  height: 64px;
  transition: 0.5s;
  background-color: #545054;
}

.expanded{
	overflow: hidden;
	display: flex;
	width: 100%;
	justify-content: space-between;
	background-color: #545054;
	border-radius: 15px;
	flex-direction: row;
	transition: 1.25s;
}

.contentContainer{
  background-color: #f2f2f2;
  width: 85vw;
  padding: 1vw;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.contentNavigation{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 2%;
  padding-right: 2%;
  margin-top: 5vh;
  font-size: 1.05em;
  position: relative;
  top: 65%;
  transform: translate(0%, -50%);
}

.navButtons {
  background-color: lightgray;
  cursor: not-allowed;
  color: gray;
  padding: 1%;
  margin-left: 1vw;
  margin-right: 1vw;
  padding-left: 3%;
  padding-right: 3%;
  font-size: 1em;
  border-radius: 25px;
  text-align: center;
  transition: 0.75s;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-color: transparent;
}

.canNav{
  background-color: white;
  color: black;
  border-radius: 25px;
  text-align: center;
  transition: 0.75s;
  border: black 1px solid;
  cursor: pointer;
}

.canNav:hover{
  background-color: orange;
  color: wheat;
  border-radius: 25px;
  text-align: center;
  transition: 0.5s;
  border: lightgray 1px;
  border-style: solid;
}

.navDot{
  background-color: darkgrey;
  height: 12px;
  width: 12px;
  border-radius: 150px;
  margin-left: 1vh;
  transition: 0.75s;
}


.activeDot{
  background-color: orange;
  height: 12px;
  width: 12px;
  border-radius: 150px;
  margin-left: 1vh;
  transition: .5s;
}

.navigationDots{
  display: flex;
  flex-direction: row;
}

.visableContent{
  display: flex;
  flex: row;
  overflow: hidden;
  width: 90%;
  height:35vh;
}

.endFox{
  height: 10vh;
  margin-top: 2vh;
}

.spin {
  animation: spins 1.5s infinite linear;
}

@keyframes spins {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.socialIcons{
  padding: 1px;
  height: 70%;
}

.socialButtons p{
  font-size: 1.5em;
  text-align: center;
}

.socialButtonContain{
  display: flex;
  flex-direction: row;
  padding: 15px;
}

.socialButtons{
  display: flex;
  flex-direction: column;
  height: 72px;
  width: 72px;
  text-align: center;
  align-items: center;
  background-color: transparent;
  border: black 1px;
  border-style: solid;
}

.socials{
  width: 75%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.pronounscc{
  font-size: 1em;
  width: 95%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-content: center;
  align-items: center;
}

.pronounscc h1{
  width: fit-content;
}

.pronounscc li::marker{
  color: transparent;
}

.profileContainer{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80vw;
  padding: 15px;
  height: 50vh;
  border-radius: 25px;
  overflow: scroll;
  background-color: #f2f2f2;
}

.ccLegend{
  margin-top: 1vh;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
