@font-face {
  font-family: 'VestulaPro Bold';
  src: url('assets/fonts/VestulaPro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'VestulaPro DemiBold';
  src: url('assets/fonts/VestulaPro-DemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'VestulaPro Regular';
  src: url('assets/fonts/VestulaPro-Regular.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}

body {
  padding: 20px;
  background-color: #0C54B4;
  color: #FFFFFF;
}

.dark-mode {
  background-color: #3C3C3C;
  color: #FFFFFF;
}

.flex-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  padding: 10px;
}

.flex-column {
  flex-direction: column;
  row-gap: 10px;
}

h1 {
  font-family: 'VestulaPro Bold', Verdana, sans-serif;
  font-weight: 700;
  text-decoration: underline;
  font-size: 36px;
}

p {
  font-family: 'VestulaPro DemiBold', Verdana, sans-serif;
  font-weight: 600;
  font-size: 30px;
}

.main-text {
  font-family: 'VestulaPro Regular', Verdana, sans-serif;
  font-weight: normal;
  font-size: 24px;
}

.profile-picture {
  width: 240px;
  height: 240px;
  border-radius: 50%;
}

@media only screen and (max-width: 400px) {
  .profile-picture {
    width: 200px;
    height: 200px;
  }
}

.language-text {
  display: none;
}

.cv-link {
  display: inline-block;
  text-align: center;
  font-family: 'VestulaPro Regular', Verdana, sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #FFFFFF;
  text-decoration: none;
  font-style: italic;
}

.cv-link img {
  height: 36px;
  width: auto;
}

.icon-link {
  display: inline-block;
  line-height: 0;
}

.icon-link img {
  height: 36px;
  width: auto;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #3C3C3C;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: url('assets/images/sun-white.svg');
  text-align: center;
  line-height: 31px;
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #0C54B4;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: #0C54B4;
}

input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  content: url('assets/images/moon-white.svg');
  background-color: #3C3C3C;
}