
@font-face {
  font-family: "Poppins";
  src: url('../fonts/Poppins/Poppins-Light.ttf') format('truetype');
}
@font-face {
  font-family: "Manrope";
  src: url('../fonts/Manrope/Manrope-Regular.ttf') format('truetype');
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin: 0;
    background: no-repeat center center fixed;
    background-color: rgb(24, 24, 27);
    background-size: cover;
    overflow: hidden;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: medium;
    margin-bottom: 60px;
  }
  
  .background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/coder-laptop.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: brightness(25%);
    animation: fadeIn linear 1s forwards;
  }

  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

  .fade-in-text {
    vertical-align: middle;
    animation: fadeIn linear 1s forwards;
  }

  h1{
    font-size: 5rem;
  }

  h2 {
    font-size: 4rem;
  }
  .top-padding {
    padding-top: 140px;
  }
  .med-padding {
    padding-top: 60px;
  }

  .med-margin {
    margin-top: 70px;
  }

  .big-label {
    margin: auto;
    color: white;
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    max-width: 640px;
    opacity: 90%;
  }

  .icon-size {
    font-size: 18px;
    margin-right: 2px;
  }

  .email {
    color: whitesmoke;
    font-size: 25px;
  }

  a:link {
    text-decoration: none;
    color: white;
  }

  a:visited {
    text-decoration: none;
  }

  a:hover {
    text-decoration: none;
    color: gainsboro;
  }

  a:active {
    text-decoration: none;
  }

  .text-center{
    text-align: center;
  }

  .center-box {
    margin-left: auto;
    margin-right: auto;
    max-width: 380px;
    border: 1px solid whitesmoke;
    padding: 12px;
    opacity: 90%;
  }

  @media (max-width: 575px) {
     .top-padding {padding-top: 40px;}
}

  .footer {
    color: whitesmoke;
    opacity: 30%;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    text-align: center;
    padding: 20px;
  }
