@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,9008display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {  
  min-height: 100vh;
  overflow-x: hidden;
  background: linear-gradient(#2b1055, #7597de);
}

nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 32px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
}

nav .logo {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 2px;
  max-width: 100px;
}

nav ul {
  display: flex;
  align-items: center;
}

nav ul li {
  list-style: none;
  margin-left: 20px;
  float: left;
}

nav ul li a {
  text-decoration: none;
  padding: 6px 15px;
  color: #fff;
  border-radius: 20px;
}

nav ul li a:hover,
nav ul li a.aktiv {
  background: #fff;
  color: #2b1055;
}

@media screen and (max-width: 600px) {
  .nav {
    width: 50%;
  }
}

aside {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

aside::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #1c0522, transparent);
  z-index: 1000;
}

aside img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

aside img#moon {
  mix-blend-mode: screen;
}
aside img#mountainsFront {
  z-index: 10;
}

#txt {
  position: absolute;
  right: -350px;
  color: #fff;
  white-space: nowrap;
  font-size: 7.5vw;
  z-index: 9;
  transform: translateY(100px);
}

#btn {
  text-decoration: none;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 40px;
  background: #fff;
  color: #2b1055;
  font-size: 1.5em;
  z-index: 9;
  transform: translateY(250px);
}

.omMeg {
  display: flex;
  align-items: center;
  color: #FFF;
  background-color: #1c0522;
}

.profile-picture img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
}

.bio {
  margin-left: 20px;
}

.imMeg h2 {
  font-size: 24px;
}

.your-name {
  color: #007BFF;
}

.your-profession {
  font-weight: bold;
}

/* styles.css */

.your-skills {
  color: transparent;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 2s steps(30, end), blink-caret 0.5s step-end infinite;
}

@keyframes typing {
  from {
      width: 0;
  }
  to {
      width: 100%;
  }
}

@keyframes blink-caret {
  from, to {
      border-right-color: #000; /* Change to your text color */
  }
  50% {
      border-right-color: transparent;
  }
}


#topBtn {
  display: none;
  background-color: #1c0522;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  z-index: 9999;
}
.overskrift {
  color: #FFF;
  text-align: center;
  font-size: 100px;
  background-color: #1c0522;
}

#topBtn::after {
  content: "\f062";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#topBtn:hover {
  cursor: pointer;
  background-color: #370643;
}

#topBtn,
a:link {
  text-decoration: none;
}

.portfolio {
  background: #1c0522;
  padding: 100px;
  width: 100%;
  color: #fff;
}

.column {
  float: left;
  width: 33.33%;
  padding: 10px;
  height: 300px; /* Should be removed. Only for demonstration */
  cursor: pointer;
  border-style: solid;
  text-align: center;
}

.column:hover {
  background: #370643;
}

.columnA {
  font-size: 2em;
  color: #fff;
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
  line-height: 150px;
}

/* Clear floats after the columns */
.portfolio:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
  #columnA {
    font: 1em;
  }
}


