@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500;700&family=Open+Sans:wght@400;700&display=swap');

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

body {
    font-family: 'JetBrains Mono', monospace;
    background: #2F2E41;
    color: white;
}

.page {
    width: 1100px;
    margin: 0 auto;
    padding-top: 70px;
}

nav {
    width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;

}

ul {
    display: flex;
    gap: 64px;
    list-style: none;
    font-size: 14px;
    line-height: 28px;
}

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

ul li a:hover {
    color: #00BFA6;
    transition: 0.5s;
}

main {
    display: flex;
    align-items: center;
    gap: 82px;
}

section {
    width: 604px;
}

h1 {
    display: flex;
    gap: 15px;
    font-size: 36px;
    line-height: 40px;
}

span {
    font-weight: 700;
    color: #00BFA6;
}

section p {
    font-family: 'Open Sans', sans-serif;
    color: #C2C2C2;
    font-size: 16px;
    line-height: 28px;
    text-align: center;

    margin-top: 60px;
}

footer {
    text-align: center;
    margin-top: 157px;
}

footer p {
    font-size: 14px;
    line-height: 28px;
    margin: 25px 0;
}

.line {
    width: 568px;
    margin: auto;
    border: 1px solid #00BFA6;

}

#lock {
    position: fixed;
    bottom: 20px;
    left: 20px;
}