@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;1,200;1,300&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Alkalami&family=Lora&family=Montserrat:wght@300&family=Roboto+Slab&family=Roboto:wght@300&display=swap);
.boldstuff,
.heading {
  padding-bottom: 0;
  margin-bottom: 0;
}
html {
  scroll-behavior: smooth;
  background-color: #faf7f0;
}
.topnav {
  color: #f1f6f9;
  font-family: Montserrat, sans-serif;
  padding: 0;
  margin: 0;
  background-color: #fff;
  overflow: hidden;
}
.subtitle,
.subtitleanchor {
  color: #495464;
  font-weight: 700;
}
.heading,
.subheading {
  padding-left: 10px;
  font-family: Lora, serif;
}
.topnav-right {
  float: right;
}
.topnav a {
  float: left;
  color: #414141;
  text-align: center;
  padding: 14px 16px;
  font-size: 17px;
  font-weight: bolder;
}
a {
  text-decoration: none;
}
.nameheader {
  font-family: Lora, serif;
  font-size: 4rem;
}
.topnav a:hover {
  background-color: #ddd;
  color: #000;
}
.special:hover {
  color: #000;
  font-weight: 700;
  transform: translateX(-10%);
  transition: 0.25s;
  animation: 0.25s infinite blinkingText;
}
@keyframes blinkingText {
  0%,
  100% {
    background-color: #dc5f00;
  }
  25% {
    background-color: #8bbccc;
  }
  50% {
    background-color: #b2b2b2;
  }
  75% {
    background-color: #eaeaea;
  }
}
.container {
  width: 1024px;
  margin-left: auto;
  margin-right: auto;
  background-color: #d8e3e7;
  border-radius: 10px;
}
.heading {
  font-size: 2em;
}
.subheading,
h3 {
  font-size: 1.5em;
}
.subheading {
  padding-top: 0;
  margin-top: 4px;
}
.boldstuff {
  font-family: Lora, serif;
  font-weight: bolder;
}
h3 {
  padding-left: 16px;
  padding-bottom: 3px;
  margin: 0;
  font-family: "Roboto Slab", serif;
}
.row {
  max-height: 370px;
  display: flex;
  margin-left: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.col-1 {
  width: 30%;
  padding-bottom: 20px;
}
.col-2 {
  width: 60%;
}
.col-3 {
  width: 20%;
  background-image: url("../img/cover.jpg");
  background-repeat: no-repeat;
  background-position: -50px 0px;
  background-size: cover;
}
.col-4 {
  width: 5%;
}
.col-40,
.col-50 {
  width: 40%;
  padding-bottom: 0;
  margin-bottom: 0;
  font-family: "Roboto Slab", serif;
}
hr {
  border: 2px solid #839b97;
}
.row1 {
  height: 50px;
}
.col-40 {
  font-size: 16;
}
.seperator,
.subtitle,
.title {
  padding-top: 5px;
  padding-bottom: 5px;
}
.col-60 {
  width: 10%;
  background-color: red;
}
.line {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}
section {
  margin-top: 30px;
  padding: 10px;
}
.title {
  font-family: Roboto, Helvetica, sans-serif;
  font-weight: 700;
}
.subtitle,
.subtitleanchor,
input[type="submit"] {
  font-family: Montserrat, sans-serif;
}
#hobbies,
#information,
#studies {
  background-color: #f3f4ed;
}
#contact,
#professionAims,
#skills {
  background-color: #f6f5f5;
}
#form {
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #f2f2f2;
}
input[type="text"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}
input[type="submit"] {
  background-color: #79bac1;
  color: #fff;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}
input[type="submit"]:hover {
  background-color: #84a9ac;
}
.column {
  margin-top: 6px;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 600px) {
  .column,
  input[type="submit"] {
    width: 100%;
    margin-top: 0;
  }
}
.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  transition: 0.5s;
}
.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
