:root {
    --font-family: "Quicksand", "Nunito", sans-serif;
    --bg-color-r: 58;
    --bg-color-g: 64;
    --bg-color-b: 90;

    --primary-text-color-r: 249;
    --primary-text-color-g: 222;
    --primary-text-color-b: 201;

    --secondary-text-color-r: 255;
    --secondary-text-color-g: 114;
    --secondary-text-color-b: 114;

    --tertiary-text-color-r: 255;
    --tertiary-text-color-g: 211;
    --tertiary-text-color-b: 91;

    --shadow-color-r: 210;
    --shadow-color-g: 241;
    --shadow-color-b: 254;
}

@font-face {
    font-family: 'DSEG7ClassicMini';
    src: url('../fonts/DSEG7ClassicMini-Regular.ttf');
}

html, body {
    height: 100%;
    margin: 0;
    user-select: none;
}

body {
    font-family: var(--font-family);
    background-color: rgb(var(--bg-color-r), var(--bg-color-g), var(--bg-color-b));
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
}

#header {
    margin-bottom: 20px;
    margin-top: 0;
    height: 76px;
    font-weight: bold;
    font-size: 3.5rem;
    color: rgb(var(--primary-text-color-r), var(--primary-text-color-g), var(--primary-text-color-b));
}

p {
    color: rgb(var(--primary-text-color-r), var(--primary-text-color-g), var(--primary-text-color-b));
    font-size: 1.2rem;
    text-indent: 2rem;
}

hl {
    color: rgb(var(--secondary-text-color-r), var(--secondary-text-color-g), var(--secondary-text-color-b));
    font-style: italic;
}

hl2 {
    color: rgb(var(--tertiary-text-color-r), var(--tertiary-text-color-g), var(--tertiary-text-color-b));
    font-style: italic;
}

.tesbihat-text {
    width: 100vh;
    height: fit-content;
}

.vakits-container { 
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: fit-content;
}

.vakit {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--primary-text-color-r), var(--primary-text-color-g), var(--primary-text-color-b));
    text-decoration: None;
    color: rgb(var(--bg-color-r), var(--bg-color-g), var(--bg-color-b));
    font-size: 2.5rem;
    font-weight: 700;
    border-radius: 16px;
    width: 65vw;
    height: 20vw;
    transition: all 0.3s;
    user-select: none;
}

.vakit::after {
    content: "";
    position: absolute;
    width: 65vw;
    height: 20vw;
    border-radius: 16px;
    background-color: rgba(var(--primary-text-color-r), var(--primary-text-color-g), var(--primary-text-color-b), 0.2);
    z-index: -1;
    transition: all 0.3s;
}

.vakit:hover {
    transform: translate(-2px,-2px) scale(1.01);
    transition: all 0.3s;
}

.vakit:hover::after {
    transform: translate(5px,5px);
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .vakit {
        width: 300px;
        height: 80px;
        font-size: 1.8rem;
    }

    .vakit::after {
        width: 300px;
        height: 80px;
    }

    #header {
        font-size: 2.5rem;
        height: auto;
    }
}

/* Scrollbar styling */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background-color: rgb(var(--secondary-text-color-r), var(--secondary-text-color-g), var(--secondary-text-color-b));
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(var(--primary-text-color-r), var(--primary-text-color-g), var(--primary-text-color-b));
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #fff;
}