@import url('https://fonts.googleapis.com/css2?family=Poppins');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

body {
    background: #1f242d;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background-color: rgba(0, 0, 0);
}

.logo {
    font-size: 25px;
    color: navy;
    user-select: none;
    text-decoration: none;
    font-weight: 600;
}

.menu a {
    position: relative;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
    cursor: pointer;
}


.menu a::after {
    content:'';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 5px;
    transform: scaleX(0);
    transition: transform .5s;

}

.menu a:hover::after {
    transform: scaleX(1);
}

.home {
    top: 140px;
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 10% 0;
}

.home-img img {
    max-width: 450px;
    margin-right: -20px;
}

.content {
    background: #081b2900;
    max-width: 800px;
}

.content h1{
    font-size: 35px;
    font-weight: 700;
}

.content h2{
    font-size: 25px;
    font-weight: 600;
}

.content h3{
    font-size: 25px;
    font-weight: 600;
}

.content h4{
    font-size: 25px;
    font-weight: 600;
}

.content h5{
    font-size: 25px;
    font-weight: 600;
}

.content h6{
    font-size: 20px;
    font-weight: 600;
}

.content h7{
    font-size: 20px;
    font-weight: 600;
}

.content h8{
    font-size: 20px;
    font-weight: 600;
}