*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #182638;
    color: fff;
}

#Header{
    width: 100%;
    height: 60px;
    background-color: #0075b0;
}

.Container{
    padding: 10px 10%;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.Logo a:visited{
    text-decoration: none;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    color: #F2F2F0;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a::after{
    content: '';
    width: 0%;
    height: 3px;
    background: #182638;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after{
    width: 100%;
}

/*-----Who I Am-----*/
#WhoIAm{
    padding: 20px 0;
    color: #F2F2F0;
}

.Row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.About-Col-1{
    flex-basis: 35%;
}
.About-Col-1 img{
    width: 100%;
    border-radius: 15px;
    border: 2px solid black;
}

.About-Col-2{
    flex-basis: 60%;
    color: #F2F2F0;
}

.About-Col-2 p span{
    color: #0075b0;
    font-size: 20px;
    font-weight: 600;
}

.Sub-Title{
    font-size: 60px;
    font-weight: 600;
    color: 000000;
}

.Sub-Title span{
    color: #0075b0;
}

.Top{
    width: 80px;
    height: 80px;
    background: #0075b0;
    border: 4px solid #F2F2F0;
    font-size: 150%;
    font-family: 'Open Sans', sans-serif;
    border-radius: 5px;
    color: #182638;
    position: fixed;
    bottom: 120px;
    right: 30px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer{
    width: 100%;
    text-align: center;
    padding: 15px 0;
    color: #F2F2F0;
    background: #0075b0;
    font-weight: 300;
    margin-top: 20px;
}

footer p{
    color: #F2F2F0;
}

.CopyRight{
    color: #F2F2F0;
    font-size: 14px;
}