h2 {
    color: black;
    font-size: 48px;
}

p {
    color: black;
    font-size:18px;
}

header {
    background-color: #231c1a;
    height: 80px;
    width: 100%;
    position: fixed;
}

header h1 {
    color: white;
    position: absolute;
    left: 120px;
    top: 0;
    line-height: 80px;
}

header a {
    color: white;
    text-decoration: none;
}

header li {
    display: inline;
    margin-right: 4vw;
}

header ul {
    position: absolute;
    right: 0;
    top: 0;
    line-height: 80px;
}

header a:hover {
    text-decoration: underline;
    color: rgb(26, 71, 168);
}

.WebIndex {
    background-color: antiquewhite;
    color: white;
    height: 100vh;
    background-image: url(img/Background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.WebIndex h1 {
    font-size: 60px;
}

.WebIndex p {
    color: #fef7e6;
    font-size: 18px;
    margin: 25px 0;
}

.WebIndex a {
    color: white;
    text-decoration: none;
    border: 1px solid #acacac;
    padding: 10px 20px;
    border-radius: 5px;
}

.WebIndex a:hover {
    color: rgb(184, 184, 184);
    font-size: 20px;
}

.Introduce {
    background-color: #485652;
    color: white;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    line-height: 1.8em;
}

footer {
    background-color: #000000;
    color: #b7b7b7;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer p {
    color: #b7b7b7;
    font-size: 10px;
}

.Avatar {
    display: flex;
}

.Avatar img {
    width: 50%;
}

.info {
    width: 50%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info h2 {
    font-size: 80px;
    margin-bottom: 30px;
}
.info p {
    font-size: 32px;
    text-align: center;
    line-height: 2em;
}

.Contact a {
    color: white;
    text-decoration: none;
    border: 1px solid #acacac;
    padding: 10px 20px;
    border-radius: 5px;
}

.Contact strong:hover {
    color: black;
    font-size: 18px;
}

.Contact strong {
    color: #000000;
    font-size: 16px;
}

.Contact p {
    font-size: larger;
    line-height: 2em;
}

.Contact {
    display: flex;
    background-color: #ede9eb;
    justify-content: space-between;
    align-items: center;
    padding: 100px 180px 80px;
}

.Contact div {
    width: 300px;
    text-align: center;
}

.Title {
    background-color: #ede9eb;
}

.Title h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

* {
    padding: 0;
    margin: 0;
}