/* styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-padding-top: 60px;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #ddf;
    position: fixed; 
    top: 0; 
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 255, 0.1);
}

nav a {
    text-decoration: none;
    color: #333;
}

td {
    padding-left: 2rem;
    padding-top: 0.5rem;
}

.main {
    padding: 2rem;
    margin-top: 30px;
}

.business-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 255, 0.1);
    width: 400px;
}

.principle-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 255, 0.1);
    flex: 1 1 400px;
}

.big-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 255, 0.1);
    width: 100%;
}

.link {
    text-align: center;
    vertical-align: middle;
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 255, 0.1);
    width: 25vw;
}

.link:hover {
    box-shadow: 0 0 10px rgba(0, 0, 255, 0.3);
}

.profile-image {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #00a;
}

h2 {
    margin: 10px;
    color: #228;
}

.contact-info{
    margin-bottom: 5px;
}

.social-icons{
    margin-right: 10px;
    border-radius: 5px;
    background-color: #ddd;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.fa-github{
    height: 30px;
    margin: 5px;
    margin-right: 10px;
    vertical-align: middle;
}

.social-icons:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.pile {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.text {
    max-width: 50rem;
    min-width: 20rem;
}

footer {
    background-color: #f4f4f4;
    text-align: center;
    padding: 1rem;
}

section {
    padding: 10px;
}

p {
    margin-top:5px;
    margin-bottom:5px;
}
