/* colors
#F5F5F5
#333*/

/*===== Reset =-V ====*/
* {
  margin: 0;
  border: 0;
  box-sizing: inherit;
}
*:focus,
*:active {
  outline: none !important;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-size: 1.6em;
  background-color: white;
  font-family: sans-serif;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
}
/*======== HEADER =======*/
header {
  position: fixed;
  height: 50px;
  width: 100%; /*important positioned don't inherit from parants*/
  background-color: #f5f5f5;
  z-index: 100;
  border-bottom: 2px solid #f2f2f2;
}
header .container {
  height: 100%; /*because all childs are positioned*/
  position: relative; /*because childs are positioned*/
}

header nav {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
header nav a {
  margin-right: 15px;
}
header img {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.header-spacer {
  height: 50px;
}

/*===================== MAIN =================== */
section {
  padding: 30px 0;
  position: relative; /*important*/
}
/*--------- hero ---------*/
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  margin-top: -30px;
  background-color: #f5f5f5;
}
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%; /*important*/
  position: relative;
}
.hero::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  min-height: 100%;
  background-color: white;
  width: 600px;
  max-width: 100vw;
  min-width: 50vw;
}

.hero h2 {
  font-size: 15vw;
  font-weight: 900;
  line-height: 1;
  margin: auto;
  text-transform: uppercase;
  color: black;
}

.hero h2 span {
  color: #4d4d4d;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #4d4d4d;
  display: block;
}

.flex-col-50 {
  flex-basis: 100%;
}
@media (min-width: 600px) {
  .hero h2 {
    font-size: 8rem;
  }
  .flex-col-50 {
    flex: 0 0 50%;
  }
}

img[src="images/me7.jpg"] {
  border-radius: 50%;
  margin: 15px;
}
.hero-right {
  text-align: center;
  /*inherited 
  center image, center text head, center text paragraph
  inside hero-rogjt*/
  margin: auto; /*center hero-right inside parent(hero)*/
}
h2,
h3,
p,
li {
  line-height: 1.6;
}
h2 {
  text-transform: uppercase;
  margin-bottom: 0.3em;
}
h3 {
  font-size: 3rem;
  text-transform: capitalize;
}

#p-hero {
  color: white;
  background-color: #006599;
  opacity: 0.6;
  border-radius: 10px;
  padding: 10px;
  max-width: 450px;
  font-size: 1.9rem;
  margin: 15px auto; /*center paragraph block inside parent hero-right*/
  box-shadow: 0px 2px 2px 0px rgb(0 0 0 / 28%),
    0px 3px 1px -2px rgb(0 0 0 / 22%), 0px 1px 5px 0px rgb(0 0 0 / 32%);
}

/*--------- Interests ----------*/

.columns-3 {
  columns: 3 300px;
  column-gap: 1.5rem;
}
/* ==================================================================== */

/*------------ Contact -----------*/

#contact {
  background-color: #006599;
  color: white;
}

label {
  margin-bottom: 2px;

  display: block;
}
input,
textarea {
  display: block;
  margin-bottom: 10px;
  padding: 3px;
  border-radius: 2px;
  border: 2px solid grey;
}
input:focus,
textarea:focus {
  border: 2px solid #333;
}

.send-btn {
  border-radius: 100px;
  border: 2px solid white;
  text-transform: uppercase;
  font-weight: bold;
  padding: 4px 15px;
  margin: 5px 0;
  background-color: transparent;
  color: white;
  transition: all ease-out 0.1s;
  position: relative;
  overflow: hidden;
  font-size: 1.2em;
}

.send-btn:hover,
.send-btn:focus {
  background-color: white;
  color: #006599;
  cursor: pointer;
}
.send-btn:active {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}
/* _____________________ ABOUT____________________________ */

table {
  border-collapse: collapse;
  background-color: white;
}
tr:nth-child(even) {
  background-color: lightgrey;
}
th {
  text-transform: uppercase;
}
td {
  text-transform: capitalize;
}
td,
th {
  padding: 4px;
  border: 1px solid black;
}
textarea {
  max-width: 100%;
}

figure {
  margin: 15px auto;
  text-align: center;
}
iframe {
  width: 310px;
  height: auto;
}
figcaption {
  text-transform: capitalize;
}
.smokebg {
  background-color: #f5f5f5;
}

.animes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
