@import url('https://fonts.googleapis.com/css');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'inter', sans-serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
}

:root {
    --text-color:#fff;
    --bg-color:rgb(5, 9, 31);
    --main-color:rgb(3, 119, 227);
    --other-color:#b5b9bf;

    --h1-font: 4.5rem;
    --h2-font: 2.9rem;
    --p-font: 1rem;
}

body {
    color: var(--text-color);
    background: var(--bg-color);
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16%;
    background: var(--bg-color);
    transition: all .50s ease;
}

.logo {
    font-size: 30px;
    color: var(--text-color);
    font-weight: 700;
}

span {
    color: var(--main-color);
}

.nav-list {
        display: flex;
        gap: 10px;
}

navlist a {
    font-size: var(--p-font);
    font-weight: 750;
    color: var(--text-color);
    margin-left: 40px;
    transition: all .50s ease;
}

navlist a:hover {
    padding-right: 10px;
    color: var(--main-color);
}

#menu-icons {
    font-size: 35px;
    z-index: 1001;
    cursor: pointer;
    display: none;
}

.h-btn {
    display: inline-block;
    padding: 11px 26px;
    background: transparent;
    color: var(--main-color);
    border: 4px solid var(--main-color);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: all .50s ease;
}

.h-btn:hover {
    background: var(--main-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--main-color);
    transform: scale(1.1);
}

section {
    padding: 100px 20% 90px;
}

.hero {
    height: 120vh;
    width: 100%;
    background-image: linear-gradient(to left, rgba(0, 0, 12, 0.304), rgba(0, 0, 0, 0.386)), url(iki.jpg);
    background-position: top right;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-content h3 {
    font-size: 1.4rem;
}

.about {
    height: 70vh;
    width: 100%;
    background-image: linear-gradient(to left, rgba(0, 0, 12, 0.432), rgba(0, 0, 0, 0.4)), url(lok.jpg);
    background-position: top right;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.medsos i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--text-color);
    border: 3.5px solid var(--main-color);
    border-radius: 50%;
    backdrop-filter: brightness(88%);
    font-size: 20px;
    margin-right: 17px;
    box-shadow: 0 0 20px transparent;
    cursor: pointer;
    transition: all .50s ease;
}

.medsos i:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--main-color);
}

.kiw i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    color: var(--text-color);
    border: 3.5px solid var(--main-color);
    border-radius: 50%;
    backdrop-filter: brightness(88%);
    font-size: 50px;
    margin-right: 17px;
    box-shadow: 0 0 20px transparent;
    cursor: pointer;
    transition: all .50s ease;
}

.kiw i:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--main-color);
}

.kiw {
    margin-bottom: 50px;
}

.btn {
    display: inline-block;
    padding: 11px 26px;
    background: var(--main-color);
    color: var(--bg-color);
    border: 2px solid var(--main-color);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all .50s ease;
}

.btn:hover {
    background: transparent;
    color:  var(--text-color);
    box-shadow: 0 0 20px var(--main-color);
}

.main-content h1 {
    font-size: var(--h1-font);
    font-weight: 800;
    margin: 20px 0px 20px;
    line-height: 1.3;
}

.main-content h4 {
    font-size: 1.6rem;
    margin: 20px 0px 20px;
    line-height: 1.3;
    color: var(--text-color);
}

.main-content p {
    font-size: var(--p-font);
    font-weight: 600;
    width: 620px;
    max-width: 100%;
    color: var(--other-color);
    line-height: 30px;
    margin-bottom: 15px;
}

.medsos {
    margin-bottom: 50px;
}

.btn:hover {
    background: transparent;
    color: var(--text-color);
    box-shadow: 0 0 20px var(--main-color);
}

.btn2 {
    background: transparent;
    color: var(--text-color);
    border: 3px solid var(--main-color);
    margin-left: 15px;
    transition: all .50s ease;
}

.btn2:hover {
    background: var(--main-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--main-color);
}