* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Rubik', Arial, sans-serif;
  font-weight: normal;
  color: #0d0d0d;
}
/*----- xxxxx -----*/
.gra {
  grid-template: repeat(3, 1fr) / repeat(1, 1fr);
  height: 100vh;
  width: 100vw;
  display: grid;
  }
/*----- xxxxx -----*/
.gra .header {
  grid-area: 1 / 1 / 1 / span 1;
  width: 100vw;
}
.header {
  background-color: #b5a69a;
  position: fixed;
  width: 100%;
  z-index: 3;
}
.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #aaa;
}
.header ul a {
  display: block;
  padding: 20px;
  text-decoration: none;
  border-right: 1px solid #aaa;
  color: #0d0d0d;
  font-weight: normal;
  font-size: 1em;
  text-align: center;
}
ul.menu {
  display: flex;
  flex-direction: column;
}
.header ul a:hover {
  background-color: #b5a69a;
}
.header img.logo {
  float: left;
  display: block;
}
.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}
.header .menu-icon {
  padding: 28px 20px;
  position: relative;
  float: right;
  cursor: pointer;
}
.header .menu-icon .nav-icon {
  background: #333;
  display: block;
  position: relative;
  transition: background 0.2s ease-out;
}
.header .menu-icon .nav-icon:before {
  background: #333;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
}
.header .menu-icon .nav-icon:after {
  background: #333;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
}
.header .menu-btn {
  display: none;
}
.header .menu-btn:checked~.menu {
  max-height: 240px;
}
.header .menu-btn:checked~.menu-icon .nav-icon {
  background: transparent;
}
.header .menu-btn:checked~.menu-icon .nav-icon:before {
  transform: rotate(-45deg);
  top: 0;
}
.header .menu-btn:checked~.menu-icon .nav-icon:after {
  transform: rotate(45deg);
  top: 0;
}

/*----- xxxxx -----*/

.gra .resume {
  grid-area: 1 / 1 / 1 / span 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #b5a69a;
}
.div4 .resume .i {
  grid-area: 1 / 2 / 1 / span 2;
}
.gra .b0 {         /*logo*/
  grid-area: 1 / 1 / 1 / span 1;
      margin-left: 10%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px;
}
ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-weight: lighter;
}
ul li {
  display: block;
  cursor: pointer;
  margin-right: 10%;
}

.resume .i .navy {          /*nav*/
  text-decoration: none;
  font-size: 1.75em;
  font-weight: bolder;
  color: #3c3c3c;
  text-decoration: none;
}
.i li {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  cursor: pointer;
}
.i li a:hover {
  color: cadetblue;
}

.i li a:active {
  color: white;
}

.active,
.a:hover {
  color: white;
}

/*----- xxxxx -----*/

.gra .Log {         /*Logo TA*/
  grid-area: 2 / 1 / 2 / span 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Log img {
  width: 90px;
  height: 90px;
}
/*----- xxxxx -----*/
.gra .pic {
  grid-area: 3 / 1 / 3 / span 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.pic .gallery {
  display: inline-block;
  border: 1px solid hsl(0, 0%, 60%);
  margin: 10px;
  width: 50%;
}
.gallery .description {
  padding: 10px;
  text-align: center;
}
.gallery:hover {
  border: 1px solid hsl(0, 0%, 20%);
}
.gallery img {
  width: 100%;
}






