#logo img{
    height: 200px;
    width: auto;
}
*{
    text-decoration: none;
}
.navbar{
    background-color: white;
    font-family:'Segoe UI', Tahoma, Verdana, sans-serif;
    padding-right: 125px;
    padding-left: 125px;
    margin-top: -50px;
    padding-top: 0px;
}
.navdiv{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
li{
    list-style: none;
    display: inline-block;
}
li a{
    color: black;
    font-size: 24px;
    margin-right: 25px;
    position: relative;
    transition: color 0.3s;
}
li a::after{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: black;
    transition: width 0.3s ease;
}
li a:hover::after{
    width: 100%;
}
#tagline{
    font-family: 'Segoe UI', sans-serif;
    font-size: 3rem;
    color: black;
    white-space: nowrap;
    padding-right: 125px;
    padding-left: 125px;
    padding-top: 50px;
    padding-bottom: 50px;
}
#tagline span {
    opacity: 0;
    transition: opacity 0.3s;
}
html, body{
    background-color: whitesmoke;
    margin: 0;
    height: 100%;
}
#stepByStepGuide{
    padding-right: 125px;
    padding-left: 125px;
}
#aboutPurpose{
    padding-right: 125px;
    padding-left: 125px;
}
.footerLink{
    padding-right: 125px;
    padding-left: 125px;
    padding-top: 13px;
    padding-bottom: 13px;
}
footer{
    bottom: 0;
    width: 100%;
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}
.wrapper{
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.content{
    flex: 1;
}
#sbsgTitle{
    font-size: 30px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
ol{
    counter-reset: section;
    padding-left: 30px;
    font-size: 18px;
    color: black;
    list-style: decimal;
}
ol li{
    margin-bottom: 12px;
    display: list-item;
    list-style: decimal;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#aPTitle{
    font-size: 30px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#aPInfo{
    font-size: 18px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 30px;
}
.footerLink{
    font-size: 18px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}