:root {
    --text-white: white;
    --text-black: black;
    --text-light: rgb(245, 245, 245);
    --text-light-hover: rgb(200, 200, 200);
    --invisible-color: rgba(0, 0, 0, 0);
    --body-bg-color: linear-gradient(to bottom, #030542 60vh, #2e297c 100vh);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Ubuntu", sans-serif;
    scroll-behavior: smooth;
    /* color: white; */
}

/* Body */
body {
    height: 100vh;
    margin: 0;
    background: var(--body-bg-color);
    width: 100%;
}

/* Header */
header {
    width: 100%;
    padding: 1.2em 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .h1 {
    display: flex;
}

header .h1 .logo .logo-img {
    filter: brightness(0) invert(1);
    /* scale: 1.2; */
    height: 25px;
    width: 25px;
    margin-right: 1rem;
}

header .h1 nav {
    display: flex;
}

header .h1 nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 4px 5px;
    transition: 300ms;
}

header .h1 nav .bx.bx-chevron-down {
    color: rgb(150, 150, 150);
    font-size: medium;
    transition: 300ms;
}

header .h1 nav a:hover .bx.bx-chevron-down {
    transform: translateY(2px);
}

header .h1 nav a:hover {
    color: var(--text-light-hover);
}

header .h2 {
    display: flex;
}

header .h2 .search {
    display: flex;
    background-color: rgba(51, 51, 51, 0.5);
    border: 1px solid rgb(119, 141, 155);
    border-radius: 5px;
    height: 28px;
    transition: 100ms;
}

header .h2 .search:hover,
header .h2 .search:focus-within {
    background-color: rgba(51, 51, 51, 0.8);
    border: 1px solid var(--text-light);
}

header .h2 .search:hover button,
header .h2 .search:focus-within button {
    border: 1px solid var(--text-light);
}

header .h2 .search:hover button .bx-search-alt-2,
header .h2 .search:focus-within button .bx-search-alt-2 {
    color: var(--text-light);
}

header .h2 .search input {
    background-color: rgba(0, 0, 0, 0);
    outline: none;
    border: none;
    padding: 0px 5px;
}

header .h2 .search:focus-within input {
    color: var(--text-light);
}

header .h2 .search button {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgb(119, 141, 155);
    border-radius: 5px;
    padding: 3px;
    margin: 3px;
    transition: 100ms;
}

header .h2 .search button:hover {
    background-color: var(--text-light);
    border: 1px solid var(--text-light);
}

header .h2 .search button:hover .bx-search-alt-2 {
    color: rgb(119, 141, 155);
}

header .h2 .search button:active {
    background-color: var(--text-light-hover);
    border: 1px solid var(--text-light-hover);
}

header .h2 .search button .bx-search-alt-2 {
    color: rgb(119, 141, 155);
    transition: 100ms;
}

header .h2 .sign-in-out {
    display: flex;
}

header .h2 .sign-in-out a {
    color: var(--text-light);
    text-decoration: none;
    padding: 4px 10px;
    margin-left: 7px;
    border: 1px solid var(--text-light);
    border-radius: 5px;
    font-size: 0.9rem;
    transition: 100ms;
}

header .h2 .sign-in-out a:hover {
    color: var(--text-light-hover);
    border: 1px solid var(--text-light-hover);
}

header .h2 .sign-in-out a:first-of-type {
    border: 1px solid var(--invisible-color);
    transition: 100ms;
}

/* Section */
section .container {
    margin: 15vh auto 20vh auto;
    width: 60%;
}

.container a {
    text-decoration: none;
    cursor: default;
}

.container a h1 {
    color: var(--text-white);
    font-size: 3.5rem;
    text-align: center;
}

.container p {
    color: var(--text-white);
    margin: 20px 0px 30px 0px;
    text-align: center;
    font-weight: 500;
}

.container .email-form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.container .email-form form {
    background-color: #e8e8ef;
    display: flex;
    justify-items: center;
    width: fit-content;
    height: 50px;
    border-radius: 8px;
    margin: 0px 8px 15px 8px;
}

.container .email-form input {
    border: none;
    outline: none;
    background-color: var(--invisible-color);
    padding: 0px 15px;
}

.container .email-form button {
    border: none;
    color: var(--text-white);
    background-color: #198137;
    border-radius: 5px;
    margin: 3px;
    padding: 0px 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 300ms;
}

.container .email-form button:hover {
    background-color: #116329;
    transition: 100ms;
}

.container .email-form a {
    color: var(--text-white);
    text-decoration: none;
    padding: 15px 18px;
    background-color: #252550;
    border: 1px solid var(--text-light);
    border-radius: 8px;
    font-weight: 600;
    margin: 0px 8px 15px 8px;
    text-align: center;
    transition: 100ms;
}

.container .email-form a:hover {
    border: 1px solid rgb(124, 124, 124);
}