@font-face {
  font-family: 'FiraCode';
  src: url('fonts/FiraCode.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.typing_title{
  font-family: 'FiraCode', monospace;
  color: aliceblue;
  font-size: 90px;
  margin-bottom: 480px;
  margin-top: 120px;
  white-space: nowrap;
  overflow: hidden;
}

body {
    text-align: center;
    background-image: url('Images/minimalist-code-wallpaper.png');
    background-size: cover;
    background-repeat: no-repeat;
  } 

  .typing_subtitle{
    font-family: 'FiraCode', monospace;
    color: white;
    padding-top: px;
  }

  .myself {
    display: inline-block;
    vertical-align: top;
    background-color: white;
    padding: 10px; 
    border-radius: 10px;
    height: 30px;
    width: 120px;
    text-align: left;
    margin: 10px;
    overflow: hidden;
    transition: height 0.3s ease, padding 0.3s ease, width 0.3s ease; /*Add width transition*/
    transform-origin: top;
}

.myself h3 {
  text-align: center;
    font-size: 24px;
    margin: 0;
    color: #555;
}

.myself p {
  font-family: 'FiraCode', monospace;
    margin: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
}
.expanded {
  height: 190px; /*text space in the whitebox*/
  padding: 15px; /*dimensions of the whiteboxes*/
  width: 300px;
  opacity: 1;
}

.myself.expanded p {
  margin-top: 5px;
  opacity: 1; 
}

.images {
  display: flex;
  justify-content: center;
  padding: 5px;
  margin-top: 20px;
}

.sub_text{
  opacity: 0.7;
  color: white;
}

.images img {
  padding-left: 10px;
  width: 90px;
  height: 60px;
  margin: 0 5px;
  opacity: 0.6;
  filter: invert();
}

