﻿@font-face{ 
	font-family: 'OpenSans';
	     src: url('Webfonts/OpenSans-Regular-webfont.woff') format('woff');
}
html {
    font-family: 'OpenSans', Arial, sans-serif;
    font-size: 1em;
}
body {
    background-color: lightsteelblue;
    padding: 1rem;
}
#siteContainer {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    border-style: solid;
    border-color: #000;
    border-radius: 30px;
    text-align: center;
    filter: drop-shadow(5px 5px 5px #000000);
}
.profileImage {
    width: 100%;
    max-width: 200px;
    filter: drop-shadow(5px 5px 5px #000000);
}
.strapLine {
    font-family: monospace;
    font-size: 1.5em;
    font-style: italic;
    font-weight: bold;
}
.sectionHead {
    font-size: 1.2em;
    font-weight: bold;
}
.wrapper {
    display: flex;
    justify-content: center;
  }
  
  .typed-text{
    width: 40ch;
    animation: typing 2s steps(22), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    font-family: monospace;
    border-right: 3px solid;
    color: #000;
  }
  
  @keyframes typing {
    from {
      width: 0
    }
  }
  
  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }
.cards {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}
.card {
    max-width: 300px;
    width: 100%;
    transition: all .2s ease-in-out;
    margin: 0 auto;
    filter: drop-shadow(2px 2px 2px #000000);
}
    .card:hover {
        transform: scale(1.1);
        transition: all .2s ease-in-out;
        z-index: 2;
    }
.cardHead {
    font-family: monospace;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    filter: none;
}

@media (min-width: 640px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

}
@media (max-width: 640px) {
    .typed-text {
        font-size: 1.2em;
    }
    .card:hover {
        transform: scale(1);
        transition: all .2s ease-in-out;
        z-index: 2;
    }
    .strapLine {
        font-size: 1.2em;
    }
}
/* Style all font awesome icons */
.fa {
    padding: 20px;
    font-size: 30px;
    width: 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    filter: drop-shadow(5px 5px 5px #000000);
}

    /* Add a hover effect if you want */
    .fa:hover {
        opacity: 0.7;
    }

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
    background: #3B5998;
    color: white;
}

/* Twitter */
.fa-twitter {
    background: #55ACEE;
    color: white;
}

/* LinkedIn */
.fa-linkedin {
    background: #55ACEE;
    color: white;
}
