html {
  height: 100%;
}

body {
  display: flex;
  
  background-color: #341E4A;
  
  background: linear-gradient(to bottom, #341E4A 0%, #C4BB9D 100%);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  
  min-height: 95vh;
  overflow: auto;
  
  margin: 0;
  padding: 0 1rem 0;
  
  color: black;
  font-family: Verdana;
}

.wrapper
{
  display: flex;
  
  flex-grow: 1;
  flex-shrink: 1;
  
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  position: relative;
  min-height: 95vh;
  
  background: none;
  
  max-height: 100%;
  max-width: 100%;
  
  margin-top: 0;
  margin-bottom: 0;
  padding: 1.25rem;
  
  z-index: 3;
}

.inner
{

  position: relative;
  
  max-width: 100%;
  width: auto;
  
  padding: 1rem 3rem 1rem;
  
  align-content: center;
  
  z-index: 1;
}

.main
{
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  
  align-items: center;
  justify-content: center;
  
  position: relative; 
  
  max-width: 100%;
  max-height: 100%;
  
  background-color: #F0E9C5;
  width: 750px;
  border: 8px solid #4C2573;
  border-radius: 37.5px;
  text-align: center;
  
  margin: 5rem;
  
  z-index: 2;
}

.portfolio
{
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  
  align-items: center;
  justify-content: center;
  
  position: relative; 
  
  max-width: 100%;
  max-height: 100%;
  
  background-color: #F0E9C5;
  width: 1024px;
  border: 8px solid #4C2573;
  border-radius: 37.5px;
  text-align: center;
  
  margin: 5rem;
  
  z-index: 2;
}

.center
{
  display: flex;
  justify-content: center;
  align-items: center;
}

.button
{
  background-color: #F0E9C5;
  border: 5px solid #4C2573;
  border-radius: 25px;
  color: black;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 8px 2px;
  cursor: pointer;
}

/*------*/

.fadein {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-timing-function: ease-out;
	animation-duration: 0.625s;
	
	margin: 0;
	padding: 0;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
		transform: scale(105%);
		
	}
	100% {
		opacity: 1;
		transform: scale(100%);
	}
}