/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
html{
    min-width:1920px;
}

body {
  margin: 0;
  background: linear-gradient(to right, #fff2f6 0%, #fff2f6 50%, #d8b79a 50%, #d8b79a 100%);
  font-family: Verdana;
  padding-bottom: 50px;
}
  
p{
  text-align: center;
  color: black;
}

a {
  text-align: center;
}
  
.header{
 text-align:center; 
}

h2 {
  font-size: 20px;
  color: darkblue;
}

h3{
  text-align: center;
}

h4 {
  font-size: 11px;
  color: black;
}

h5 {
  font-size: 10px;
  color: lightgrey;
  position: fixed;
  right: 30px;
  top: 100px;
}

h6{
 color:red;
 text-align:center;
 font-size:15px;
}

h7 {
  font-size: 10px;
  color: lightgrey;
}

p1{
  border-top: 3px solid black; 
  font-size: 15px;
  color: black;
  position: fixed;
  left: 480px;
  top: 350px;
  text-align: left;
  max-width:500px;
}
  
a:link{
  text-decoration: none;
  color:darkred;
}

a:visited {
  text-decoration: none;
  color:darkred;
}
          
a:hover{
  color:blue;
}

a:active {
  color:red;
}

.align-center{
  position:absolute;
  transform: translate(45%, 0%);
}

.align-left{
  position:absolute;
  transform: translate(10%, 300%);
}

.align-right{
  position:absolute;
  transform: translate(600%, 100%);
}

.back{
  position:absolute;
  transform: translate(900%, 100%);
}

.header {
  margin:auto;
  width:1000px;
  max-width:100%;
  box-sizing: border-box;
  color:black;
  text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
               1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}

.pink{
 color:red; 
}

.brown{
 color:#d38d4f; 
}


.body {
  margin:auto;
  width:1500px;
  max-width:100%;
  height:auto;
  min-height: 200%;
  overflow-y: scroll;
  box-sizing: border-box;
  text-align: left;
  
  line-height: 1.5;
  margin-bottom:100px;
}

.b1{
 max-width:50%;
 border-color:pink;
}

.folder {
  width:500px;
  max-width:100%;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: left;
  position:absolute;
  padding-bottom:100px;
}

.folder1 {
  width:500px;
  max-width:100%;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: left;
  left:1200px;
  position:absolute;
  padding-bottom:100px;
}

.prof img{
  max-width: 500px; 
  width: 500px;
  max-height:500px;
  height:500px;
  margin: 2px;
  text-align:center;
}

.mina{
  color:red;
}

.fantasy {
  font-family: fantasy;
}

.fixed {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;

}

.bottom {
  position: fixed;
  bottom: 0;
  width:200%;
  z-index: -1;
  transform: translate(-60.3%, 0%);
}

ul .a {
  list-style-type: none; 
}

.topnav {
  background-color: white;
  overflow: hidden;
}

.topnav a {
  float: left;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  
  border-bottom: 3px solid black;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: black;
  color: white;
}

/* Add a color to the active/current link */
.topnav a:active {
  background-color: red;
  color: white;
}

.bord{
  border: 16px solid;
  border-color:black;
  width: 300px;
  transition: transform .2s;
}

.bord:hover{
 transform: scale(1.5) 
}