*{
    outline:none;
    max-width:100%;
    box-sizing:border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

html,body{
    height:100%;
}

body{
    margin:0;
    display:flex;
    flex-direction:column;
    background:linear-gradient(to left, #131333, #0d0d25);
    color:#e7e7e7;
}

a{
    text-decoration:none;
    color:#c2d4cb;
}

.holder{
    width:1300px;
    text-align:left;
}

header{
    text-align:center;
    padding:15px;
    border-bottom:1px solid #282838;
}

header .holder{
    display:inline-flex;
    align-items:center;
    gap:20px;
}

header .links{
    display:flex;
    align-items:center;
    flex:1;
    justify-content:end;
    font-size:14px;
    gap:10px;
}

header .links a{
    color:#bbbbbb;
}

header .links a.focused{
    background:#0f621f;
    border:1px solid #6ac67d;
    padding:7px 10px;
    color:#ffffff;
    font-weight:500;
    border-radius:7px;
}


header .links a:hover{
    color:white;
}


header .logo{
    font-size:20px;
    font-weight:bold;
}

main{
    text-align:center;
    padding:15px;
}

main .holder{
    display:inline-block;
    margin:30px 0;
}

.title{
    font-size:30px;
    font-weight:bold;
}

.text{
    margin:16px 0;
}


.tools{
    margin:30px 0;
    padding:20px;
    border-radius:10px;
    border:1px solid #1d1d42;
    background:#141433;
}

.tools .list{
    display:flex;
    gap:13px;
    flex-wrap:wrap;
}

.tools .list a{
    background:#0f621f;
    padding:8px;
    border:1px solid #468e55;
    border-radius:6px;
    color:white;
}

.tools .list a:hover{
    background:#074807;
}


textarea{
    width:100%;
    margin:5px 0;
    background:#0a0a1c;
    border:1px solid #25253c;
    padding:10px;
    height:140px;
    border-radius:4px;
    resize:none;
    color:white;
}

input{
    background:#0a0a1c;
    border:1px solid #25253c;
    width:100%;
    padding:10px;
    margin:5px 0;
    color:white;
}

textarea::placeholder, input::placeholder{
    color:#bababa;
}


.col{
    width:800px;
    display:inline-block;
    text-align:left;
}

.form{
    padding:30px 0;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.form .btn-group{
    display:flex;
    gap:10px;
    justify-content:start;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.form button{
    border:1px solid #c49238;
    background:#4a3a17;
    padding:5px 10px;
    border-radius:50px;
    color:white;
}

button{
    cursor:pointer;
}

article{
    padding:20px;
    color:#b2c5d1;
    border:1px solid #1d1d42;
    background:#141433;
    font-size:14px;
}

main{
    flex:1;
}

footer{
    font-size:14px;
    text-align:center;
    padding:20px 15px;
    border-top:1px solid #282838;
}


footer .holder{
    display:inline-block;
    text-align:center;
    
}

.col span{
    margin-left:6px;
    color:#4ad366;
}

section{
    text-align:center;
}

section{
    padding:15px;
}
section .holder{
    display:inline-block;
    padding:15px;
    border-radius:3px;
}

.category-grid{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.category-grid h3{
    margin:0;
}

.categories li a:hover{
    color:#30d730;
}

.categories ul{
    display:flex;
    flex-direction:column;
    gap:10px;
    padding:6px;
    list-style:none;
}