* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: white;
    text-decoration: none;
}

body {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    height: 90vh;
    background-color: #DCD6F7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-sec {
    height: 80vh;
    width: 94vw;
    font-size: 80px;
    padding-left: 70px;
    padding-top: 180px;
    background-image: url(../static/landscape-illustration.svg);
    background-repeat: no-repeat;
}

.about-sec {
    background-color: #424874;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-p {
    border: 2px solid #F4EEFF;
    width: 500px;
    padding: 30px;
    border-radius: 10px;
}

#about-title {
    font-size: 20px;
    padding-bottom: 5px;
}

.thanks-sec {
    background-color: #F4EEFF;
    color: black;
    height: 300px;
    display: flex;
    justify-content: center;
}

.thanks {
    font-size: 80px;
    padding-top: 40px;
}

.line {
    border-left: 1px solid black;
    height: 120px;
    position: absolute;
    left: 50%;
}

footer {
    background-color: #1c1f33;
    color: #F4EEFF;
    display: flex;
    justify-content: center;
    height: 140px;
    flex-direction: column;
    overflow: hidden;
}

.contact-sec {
    font-size: 20px;
    padding-top: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.contact-title {
    display: flex;
    justify-content: center;
}

.contact-link {
    font-size: 22px;
    padding-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-link:hover {
    text-decoration: underline;
}

.copyright-title {
    font-size: 14px;
    padding-left: 16px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}
#copyright {}
.github-link {
    padding-right: 40px;
    padding-bottom: 40px;
}

.github-logo {
    width: 27px;
    float: right;
}