@font-face {
    font-family: 'MyCustomFont';
    src: url('fonts/Devia.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

header {
    background-color: whitesmoke;
    color: black;
    width: 900px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 0px;
    padding-bottom: 0px;
    padding-top: 5px;
    border: 1px solid;
    border-color:darkgrey;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header nav a {
    margin-right: 40px;
    text-decoration: none; 
    font-size: 25px;
    color: black;
}

nav a:last-child {
    margin-right: 0;
}

body {
    font-family: 'MyCustomFont', sans-serif;
    background-color: grey;
}

#about, #projects, #contact, #skills {
  position: relative;
}

.top-right-image {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 300px;     
  height: auto;
  border-radius: 8px; 
}

main {
    background-color:whitesmoke;
    border: 1px solid;
    border-color:darkgrey;
    color:#333333;
    width: 900px;
    padding: 30px;
    padding-top: 0px;
    height: 800px;
    margin: 0 auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

main h1 {
  text-align: center;
  font-size: 50px;
  margin-bottom: 5px;
}

main h2 {
    margin-top: 0px;
    text-align: center;
    font-size: 14px;
}

main section {
    padding-right: 400px;
}

code {
  background-color: #f4f4f4;
  padding: 0px;
  display: block;
  border-radius: 0px;
  font-family: monospace;
  margin-left: 0px;
}

pre {
  margin: 0;
  padding: 0;
}

section a:visited {
  color: blue; 
}

.code-wrapper {
      border: 2px solid #ccc;
      border-radius: 6px;
      padding: 10px;
      display: inline-block; 
      margin-bottom: 0px;
      margin-top: 10;
      padding-bottom: 10px;
      padding-top: 10px;
  }

.code-container {
      display: flex;
      gap: 50px; 
    }

.code-block {
  flex: 1; 
  background-color: #f4f4f4;
  padding: 0px;
  border-radius: 0px;
  font-family: monospace;
  font-size: 12px;
  white-space: pre;
}

.text {
  line-height: 1.4;
}

.hidden {
  display: none;
}