@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Trade+Winds&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pangolin&display=swap');
/* CSS Document */
* {
  box-sizing: border-box;
}img{
	border-radius: 50px;
}

body {
  margin: 20px;
  padding: 20px;
}
h1{
	font-family: "trade winds", regular;
}
p{
	font-family: "trade winds", regular;
}ul{
	font-family: "trade winds", regular;
}h2{
	font-family: "trade winds", regular;
}
.info{
	font-family: "trade winds", regular;
	margin-left: 10px;
	position: fixed;
  transform: translate(30%,0);
  
}li{
	font-family: "trade winds", regular;
}header {
  background-color: #ffffff;
  text-align: center;
  padding: 10px;
}
		body{
	background-color:#3B1C1C;
	margin: 0;
  padding: 0;
	}
		h1{
			color: #b92a2a
		}h2{
			color: #b92a2a
		}
		a{
			font-size: 20px;
			text-align: center;
			color: #D94DB0
		}/* Style the topnav */
ul.topnav {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #333333;
}

/* Style links in topnav */
ul.topnav li a {
  display: block;
  color: #f1f1f1;
  padding: 14px 16px;
  text-decoration: none;
  
}

/* Change color on hover */
ul.topnav li a:hover {
  background-color: #b92a2a;
  color: black;}

  ul.topnav li a:active {
  background-color: #ce8d2b;
  color: black;}
  ul.topnav li a:visited {
  background-color: #220606;
  color: black;}
div.flex-container {
  display: flex;
  /* Show the flex items horizontally */
  flex-direction: row;
  
}

div.flex-container > div {
  margin: 50px;
}

div.center{
	  margin-top: 100px;
  margin-bottom: 100px;
  margin-right: 100px;
  margin-left: 4px;
	width: 1250px;
	height: 1000px;
  background-image: linear-gradient(to bottom, #D17A17, #D17A17, #e2624b);
	position:relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 2%);
	border-radius: 25px;
	border-style: solid;
	border-width: medium;
	border-color: #000000;
}
.profile-image {
  border-radius: 100px;
  width:400px;
  height:200px; 
  transform: translate(-25%, 0);
}
.title{
	background-image: linear-gradient(to bottom, #e6d4a8, #e6b1a8);
	margin:10px;
	border-radius: 25px;
	border-style: solid;
	border-width: medium;
	border-color: #000000;
	width: 1225px;
	height: 150px;
  overflow: inherit;
}

div.category1
{
	background-image: linear-gradient(to bottom, #e6d4a8, #e6d4a8, #e6b1a8);
	margin-left: 10px;
margin-right:75%;
	border-radius: 25px;
	border-style: solid;
	border-width: medium;
	border-color: #000000;
  overflow:inherit;
}
div.category2
{
	background-image: linear-gradient(to bottom, #e6d4a8, #e6d4a8, #e6b1a8);
	margin-left: 5px;
  margin-right: 26.5%;
  margin-top: 15px;
	border-radius: 25px;
	border-style: solid;
	border-width: medium;
	border-color: #000000;
  overflow:inherit;
  transform: translate(35%, -450px);
}

/* Use media query and show the flex items vertically if screen width is less than 600px */
@media screen and (max-width:600px) {
  div.flex-container {
    flex-direction: column;
  }div.options {
    flex-direction: row;
  }
}footer {
   position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f1f1f1;
  padding: 8px;
  text-align: center;
  z-index: 1000;
}
/* From Uiverse.io by adamgiebl */ 
button {
    /* Variables */
  --button_radius: 0.75em;
  --button_color: #e8e8e8;
  --button_outline_color: #000000;
  font-size: 17px;
  font-weight: bold;
  border: none;
  border-radius: var(--button_radius);
  background: var(--button_outline_color);
}
.buttons{
  overflow:inherit;
	margin-top: 10px;
	margin-left:10px; 
  margin-bottom: 10px;
}

.Swag{
  width: 100%;
  height: 100%;

  background: linear-gradient(135deg, #0000 18.75%, #650304 0 31.25%, #0000 0),
    repeating-linear-gradient(45deg, #650304 -6.25% 6.25%, #d71515 0 18.75%);
  background-size: 64px 64px;
	  animation: backgroundScroll 50s linear infinite;
}
.button_top {
    /* New variables */
  --gradient-color-1: #8360c3;
  --gradient-color-2: #2ebf91;
  display: block;
  box-sizing: border-box;
  border: 2px solid var(--button_outline_color);
  border-radius: var(--button_radius);
  padding: 0.75em 1.5em;
  background: linear-gradient(to bottom, var(--gradient-color-1), var(--gradient-color-2));
  color: var(--button_outline_color);
  transform: translateY(-0.2em);
  transition: transform 0.1s ease;
}

button:hover .button_top {
    /* Pull the button upwards when hovered */
	--gradient-color-1:#a84232;
  --gradient-color-2: #ede853;
  transform: translateY(-0.33em);
}

button:active .button_top {
    /* Push the button downwards when pressed */
  transform: translateY(0);
}	
@keyframes backgroundScroll {
  from {
    background-position: 0 0; /* Start position */
  }
  to {
    background-position: 50% 25%; /* End position, make sure it's the width of the image for seamless loop */
  }
}