*, *::before, *::after {
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    background-color: #5E5651;
    background-image: url("../images/stripes.png");
    background-repeat: repeat-x;
    padding: 0 10px;
    z-index: 1000;
}

header a {
    display: block;
    height: 100%;
    width: 250px;
}

header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 59%;
}

h1 {
    font-size: 48px;
    margin: 0;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

section {
    width: 100%;
}


.about-section{
    padding: 30px;
    margin-top: 60px;
}

.about-section-content {
    border: 5px solid #212020;
    color: #212020;
    padding: 30px;
    border-radius: 5px;
    height: 100%;
}

.about-section-content p {
    font-size: 24px;
}