@import url(harabara.css);

html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #24252A;
}

header {
    user-select: none;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 3px;
    background-color: #111111;
    z-index: 1000;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex-shrink: 1;
}

.logo-title h1 {
    margin: 0;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
}

.logo-title a {
    display: inline-block;
    flex-shrink: 0;
}

header > a {
    display: flex;
    flex-shrink: 0;
}

.logo {
    margin: 5px;
    width: 85px;
    cursor: pointer;
}

.nav_links {
    margin-left: auto;
    flex-shrink: 0;
}

.nav_links ul{
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav_links li {
    display: inline-block;
    margin-right: 10px;
}
.nav_links li:first-child {
    margin-right: 0px;
}

.nav_links li a {
    color: white;
    transition: all 0.3s ease 0s;
}
.nav_links li a:hover {
    color: rgb(179,77,255);
}

header, li, a, button {
    text-decoration: none;
}

.harabara {
    font-family: 'Harabara', sans-serif;
}

body {
    margin-left: 8%;
    margin-right: 8%;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 95vh;
    justify-content: center;
}

.container h1 {
    color:rgb(255, 255, 255)
}

.container h1:first-child {
    margin-bottom: -21px;
}
.container h1:nth-child(3) {
    margin-bottom: 90px;
}


.button {
    user-select: none;
    background-image: url("background16.png");
    background-size: cover;
    border: none;
    color: white;
    padding: 25px 40px;
    font-size: 25px;
    cursor: pointer;
    display: inline-block;

    position: relative;
    overflow: hidden;

    transition: all 0.5s, color 0.5s;
}

.button:hover {
    color: rgb(179, 77, 255);
    transform: scale(1.05);
}
.button:active {
    transition: all 0.120s;
    transform: scale(0.90);
}
.button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: 0.25s;
    pointer-events: none;
}
.button:hover::before {
    background: rgba(255,255,255,0.09);
}
.button:active::before {
    background: rgba(0, 0, 0, 0.35);
}