@import url("https://fonts.googleapis.com/css2?family=Fira+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap");

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000000;
    line-height: 1.5;
    color: #e1dfdf;
    font-family: 'Inter', sans-serif;
}

.navbar {
    background: #3d3b3b;
    width: 100%;
    height: 90px;
    position: sticky;
    top: 0;
    box-shadow: 0px 4px 2rem rgb(0 0 0 / 0.5);
}

.logo {
    float: left;
    align-items: center;
    margin-left: 100px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.logo a img {
    width: 60px;
}

.container {
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.ham-wrap {
    float: right;
    margin-top: 32px;
    margin-bottom: 10px;
    margin-right: 100px;
}

.ham {
    height: 3px;
    width: 35px;
    background-color: #ffffff;
}

.ham:hover {
    background-color: #938e8e;
}

.ham-menu {
    padding: 80px;
    text-align: center;
    transform: translateY(-1000px);
    transition: 0.5s;
}

.ham-menu li {
    font-size: 60px;
    list-style-type: none;
    line-height: 100px;
}

.ham-menu li a {
    text-decoration: none;
}
.ham-menu-background {
    margin: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
}

.show-ham-menu {
    transform: translateY(0);
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: #938e8e;
}

h1 {
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: left;
    font-size: 100px;
    font-weight: 500;
    font-family: 'Fira Sans', sans-serif;
}

h2 {
    font-size: 50px;
    font-family: 'Fira Sans', sans-serif;
    margin-top: 60px;
    margin-bottom: 10px;
    font-weight: 100;
}

.full-body {
    margin-top: -600px;
    margin-left: 150px;
    margin-right: 150px;
}

.second-body {
    font-size: 35px;
    margin-bottom: 30px;
}

.third-body {
    font-size: 25px;
}

.main-container h1 {
    margin-top: 200px;
    justify-content: center;
    text-align: center;
    font-size: 150px;
}

.other-main-heading {
    font-size: 60px;
    margin-top: 40px;
}

.full-body ul {
    margin-left: 26px;
}

.typer {
    color: rgb(0, 255, 234);
}

@media screen and (max-width: 800px) {
    .navbar {
        height: 70px;
    }

    .logo {
        margin-top: 10px;
        margin-left: 30px;
    }

    .logo a img {
        width: 50px;
    }

    .ham-wrap {
        margin-top: 22px;
        margin-right: 32px;
    }

    .ham-menu li {
        font-size: 40px;
        line-height: 90px;
    }

    h1 {
        margin-top: 25px;
        font-size: 60px;
    }

    h2 {
        margin-top: 40px;
        font-size: 30px;
    }

    .full-body {
        margin-top: -550px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .second-body {
        font-size: 26px;
    }
    
    .third-body {
        font-size: 20px;
    }

    .main-container h1 {
        margin-top: 230px;
        font-size: 90px;
    }

    .other-main-heading {
        margin-top: 25px;
        font-size: 35px;
    }

    .full-body ul {
        margin-left: 22px;
    }
}
