@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-color: #1f242d;
    --second-bg-color: #323946;
    --text-color: #fff;
    --main-color: #0ef;
}

body{
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* Home Page */

.home-container {
    padding: 10px 10%;
}

#home-header span{
    color: var(--main-color);
}

.logo {
    font-size: 30px;
    cursor: pointer;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

nav ul li {
    display: inline-block;
    list-style: none;
    padding: 10px 20px;
}

nav ul li a {
    font-size: 18px;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
}

nav ul li a::after {
    content: '';                    
    width: 0%;
    height: 3px;
    background-color: var(--main-color);
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}

.header-text {
    margin-top: 30%;
    font-size: 25px;
}

.header-text img {
    height: 50vh;
}

.header-text h1 {
    font-size: 40px;
    margin-top: 20px;
}

.header-text span {
    color: var(--main-color);
    text-shadow: 1px 1px 2px black;
}

.home-icons a{
    color: #fff;
}

.home-icons i{
    font-size: 40px;
    padding: 1%;
}

.home-icons i:hover {
    color: var(--main-color);
    cursor: pointer;
}

/* About Page */

#about-header {
    padding: 10%;
    background-color: var(--second-bg-color);
}

.about-container img {
    border-radius: 15px;
    height: 60vh;
}

.about-row {
    display: flex;
    justify-content: space-between;
}

.about-col-2 {
    width: 105vh;
    height: 80vh;
    letter-spacing: 1px;
    line-height: 30px;
    overflow-y: hidden;
    font-size: 13px;
}

#about-header img {
    box-shadow: 1px 8px 10px black;
}

#about-header img:hover {
    transform: scale(1.1);
    transition: 0.5s;
    cursor: pointer;
    z-index: 2;
}


#about-header .about-col-2 span {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-color);
    position: relative;
}

#about-header .about-col-2 span::after {
    content: '';                    
    width: 0%;
    height: 3px;
    background-color: var(--main-color);
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

#about-header .about-col-2 span:hover::after{
    width: 100%;
}