/* #region Yapı */
:root{
    --color-bg: #0b0b0d;
    --color-text-primary: #e4e4e7;
}

html, body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text-primary);
}

::selection{
    background: #ffbf00ce;
}
/* #endregion */

/* #region Global Kısaltmalar */
.r{
    position: relative;
}
.f{
    display: flex;
}
.fcol{
    flex-direction: column;
}
.frow{
    flex-direction: row;
}
.jc{
    justify-content: center;
}
.jb{
    justify-content: space-between;
}
.je{
    justify-content: end;
}
.ic{
    align-items: center;
}
/* #endregion */

/* #region Global Header */
header{
    height: 100px;
    width: 100%;
}
header .logo{
    width: 60px;
    font-weight: 900;
}
header nav{
    font-size: 24px;
}
/* #endregion */

/* #region Global Hero*/
.hero{
    height: calc(100vh - 100px);
}
.hero .container{
    height: 100%;
}
.hero .left-side{
    width: 50%;
    height: 100%;
    text-align: center;
    line-height: 1.08;
}
.hero .left-side h2{
    font-size: 94px;
    font-weight: 900;
}
.hero .left-side h2 .limits{
    color: #ff3131;
}
.hero .left-side h2 .obstacles{
    color: #004aad;
}
.hero .left-side h2 .success{
    background: linear-gradient(90deg, #ffde59, #ff914d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero .right-side{
    width: 50%;
    height: 100%;
}
.hero .right-side .terminal{
    font-family: Consolas, 'Courier New', monospace;
    width: 80%;
    height: 350px;
    background-color: #000000;
    border-radius: 25px;
    border: 2px solid #171717;
    padding: 30px;
}
.hero .right-side ::selection{
    background-color: #ffffff;
    color: #000000;
}
.hero .right-side .terminal .kess{
    background: linear-gradient(90deg, #ffde59, #ff914d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero .right-side .terminal .archlinux{
    color: #004aad;
}
.hero .right-side .terminal .slash{
    color: #00bf63;
}
.hero .right-side .terminal .cursor {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  background: #fff;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  50% { opacity: 0; }
}
/* #endregion */

/* #region Technical Info */
.technical-info{
    height: 100vh;
}
.technical-info .container{
    padding: 50px 0 50px 0;
}
.technical-info h2{
    height: fit-content;
    font-size: 31px;
    font-weight: 700;
}

.technical-info .left-side{
    width: 50%;
}
.technical-info .right-side{
    width: 50%;
}
.technical-info .code-box{
    height: 100px;
    width: 100px;
    background-color: #212128;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 40px;
}
/* #endregion */