/* Base Settings */

body {
  margin: 0;
  background-color: #3c8d0d;
  font-family: Arial, sans-serif;
}

hr { 
    margin: 0px;
    border: 0px;
}

/* Navigation bar */

.topbar {
    background-color: #333;
    overflow: hidden;
}

.topbar a {
    float: right;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 1.0625rem;
}

.topbar a:hover {
    background-color: green;
    color: #ddd;
    cursor: pointer;
}

.topbar a.current {
    background-color: #04AA6D;
}

.topbar a.split {
    float: left;
}

/* Heroing Front Page */

body h1 {
    font-size: 3.125rem;
}

.name p {
    font-size: 1.5625rem;
}

.image {
    background-image: url(../imgs/mountain-view.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100svh;    
}


.name { 
    text-align: center;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.name button {
    border: none;
    font-weight: bold;
    font-size: 0.9375rem;
    padding: 10px 25px;
    cursor: pointer;
    outline: 0;
    text-align: center;
    display: inline;
}

/* About section */
.about {
    padding: 2em 1em;
}

blockquote {
    padding: 1.5em 2em;
    line-height: 1.8;
    font-size: 1.2em;
    max-width: 1000px;
    background-color: #F5F5F5;
    font-style: italic;
    border-left: 6px solid #f00;
    border-radius: 16px;
    position: relative;
    margin: 2em auto;
}

blockquote span {
    display: block;
    margin-top: 2em;
    color: black;
    font-weight: bold;
    font-style: normal;
    text-align: right;
}

.about h2 {
    margin: 0;
    color: #222;
    text-decoration: underline;
    padding: 0.5em 0;
    text-align: center;
    font-size: 2em;
}

.about p {
    margin: 1em auto;
    padding: 0 1.5em;
    line-height: 2em;
    color:  black;
    font-size: 1.08rem;
    max-width: 1000px;
    text-align: justify;
}

/* Footer section */

.contact {
    display: flex;
    flex-direction: column;
    background-color: white;
}

.contact th {
    text-align: left;
    font-size: 1.1875rem;
}

.contact a {
    text-decoration: none;
    color: black;
}

.contact a:hover {
    color: red;
}

.copyright { 
    background-color: rgb(224, 224, 224);
    text-align: center;
}
