body{
    margin: 0;
    padding: 0;
}
.header {
    position: relative;
    display: flex;
    flex-direction: row;
    height: 80vh;
    background-color: cadetblue;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 95% 100%, 90% calc(100% - 30px), 
                      85% 100%, 80% calc(100% - 30px), 75% 100%, 70% calc(100% - 30px), 
                      65% 100%, 60% calc(100% - 30px), 55% 100%, 50% calc(100% - 30px),
                      45% 100%, 40% calc(100% - 30px), 35% 100%, 30% calc(100% - 30px), 
                      25% 100%, 20% calc(100% - 30px), 15% 100%, 10% calc(100% - 30px), 
                      5% 100%, 0 calc(100% - 30px));
}

.titleSection{
    display: block;
    position: absolute;
    top: 25%;
    width: 35vw;
    left: 5%;
}
.headerImage{
    position: absolute;
    width: 55vw;
    right: 0;
    top: 15%;
    margin: auto;
}
.headerImage img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    max-width: 55%;
}
.headerTitle{
    margin-top: auto;
    margin-bottom: auto;
}

.bodyContent{
    display: flex;
    flex-direction: column;
}
.bodyTitle{
    margin-left: 4%;
    margin-top: 5%;
}
.bodySubtitle{
    margin-left: 4%;
}
.row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 2% 3% 2%;
}
.card{
    width: 25%;
    padding: 2%;
    border-radius: 10px;
    height: 50vh;
}
.card a{
    text-decoration: none;
    color: black;
}
.card:hover{
    cursor: pointer;
    background-color: whitesmoke;
}

.footer {
    position: relative;
    height: 29px;
    background-color: #5f9ea0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; 
    clip-path: polygon(0 30px, 5% 0, 10% 30px, 15% 0, 20% 30px, 25% 0, 
                      30% 30px, 35% 0, 40% 30px, 45% 0, 50% 30px, 
                      55% 0, 60% 30px, 65% 0, 70% 30px, 75% 0, 
                      80% 30px, 85% 0, 90% 30px, 95% 0, 100% 30px);
}

.footertwo{
    background-color:cadetblue;
    height: 35vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footertwo p{
    margin: 0;
}
.cardImage img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    max-width: 65%;
}
.github{
    display: block;
    position: relative;
}