@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url("def.css");
@import url("reset.css");
@import url("colors.css");

body {
    background: #1a1a22;
    height: 100vh;
}

.content {
    margin: 0.1vh;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-1 {
    margin-bottom: 70px;

    font-size: 60px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.title-2 {
    margin-bottom: 20px;

    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.btn {
    display: inline-block;
    /* height: 48px; */
    padding: 12px 28px;

    border-radius: 5px;
    background-color: var(--button-color);
    letter-spacing: 0.15px;
    font-size: 16px;
    font-weight: 500;
    width: fit-content;

    transition: opacity 0.2s ease-in;
}

.btn:hover {
    opacity: 0.8;
}

.btn:active {
    position: relative;
    top: 1px;
}

/* Btn outline */

.btn-outline {
    display: flex;
    column-gap: 10px;
    align-items: center;

    height: 48px;
    padding: 30px 40px;

    border-radius: 5px;
    border: none;
    background-color: var(--button-color);

    transition: opacity 0.2s ease-in;
}

.btn-outline:hover {
    opacity: 0.8;
}

.btn-outline:active {
    position: relative;
    top: 1px;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.container {
    width: 70%;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 0px;
    box-sizing: border-box;
    background: var(--nav-color);
}


.after_container {
    width: 70%;
    height: 200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    background: var(--nav-color);
    background: linear-gradient(to bottom, var(--nav-color), rgba(40, 40, 50, 0));
}


@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .after_container {
        width: 90%;
    }
}

input[type="text"], input[type="password"], input[type="email"], input[type="number"], input[type="url"], input[type="tel"], input[type="search"] {
    background: var(--button-color);
    padding: 5px;
    margin-left: 10px;
    border-radius: 5px;
    border: 1px solid var(--nav-border-color);
}

/* stream card */

.streams {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
}

.stream_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--stream-card-color);
  border-radius: 5px;
  box-shadow: 0 0 10px var(--shadow-color);
}

.stream_card h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.stream_card a {
  font-size: 16px;
  margin-bottom: 10px;
}

.card_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.card_container a {
  color: rgba(255, 255, 255, 0.5);
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.nostreams {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  margin: 0;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav {
    box-shadow: 0 0 10px var(--shadow-color);
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: var(--nav-color-solid);
    z-index: 100;
}

.logo {
    font-size: 50px;
    font-weight: 700;
}