*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;

    color: white;
    font-family: 'Open Sans', sans-serif;
}

body{
    background: #2C2B3D;
}

#page{
    width: 1092px;
    margin: auto;
    /* border: solid 1px red; */
}

#header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 71px 0 100px;
}

ul{
    display: flex;
    gap: 64px;
    list-style: none;
}

a{
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    transition: 0.7s;
}

a:hover{
    color: #00BFA6;
}

main{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

main section{
    text-align: center;
}

main section h1{
    font-family: 'JetBrains Mono', monospace;
    font-size: 36px;
    
    padding-bottom: 59px;
}

h1 span{
    font-family: 'JetBrains Mono', monospace;
    color: #00BFA6;
}

main section p{
    color: #C2C2C2;
    font-size: 16px;
    line-height: 28px;
}

p strong{
    color: #C2C2C2;
}

p span{
    font-weight: bold;
    color: #00BFA6;
}

#padlock{
    position: fixed;
    bottom: 20px;
    left: 20px;
}

footer .line{

    width: 568px;
    height: 0;

    margin: 0 auto 27px;

    border: 1px solid #00BFA6;
}

footer{
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    text-align: center;
    padding: 157px 0 23px;
}

footer a{
    color: #00BFA6;
    transition: 0.7s;
}

footer a:hover{
    color: #00ffdd;
}
