
/* ============================================================================ */
/*  ENTIRE FILE DEFAULT CONFIG                                                  */
/* ============================================================================ */

@font-face {
    font-family: 'rainyhearts';
    src: url(/assets/css/fonts/rainyhearts.ttf);
}

html {
    font-family: "rainyhearts";
    color:#ffffff;
    font-size: 3rem;
    font-style: normal;
    background-color: rgb(8, 0, 36);
    background-image: url(/assets/img/bg.png);
    background-attachment: fixed;
    background-position: center;
}

body {
    margin-top: 2%;
    margin-bottom: 5%;
    margin-left: 20%;
    margin-right: 20%;
    width: 60%;
    font-weight: 400;
    overflow-wrap: break-word;
}

img {
    border-radius: 4px;
}

p {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}

/* ============================================================================ */
/*  HEADER                                                                      */
/* ============================================================================ */

header nav {
    background-color: rgba(5, 0, 20, 0.92);
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 2rem;
    height: 2rem;
    border: none;
    border-radius: 20px;
}

header nav a {
    padding: 0.4rem;
    color: #b4cbff;
    font-weight: bold;
}

/* ============================================================================ */
/*  MAIN                                                                        */
/* ============================================================================ */

main {
    margin-top: 20px;
}

/* ============================================================================ */
/*  CLASS                                                                       */
/* ============================================================================ */

.highlight {
    color: #ff99ff;
    font-weight: bold;
}

.niko {
    margin: 0 55% 0 45%;
    padding-top: 0;
    margin-top: 0;
}

.noul {
    color: #ffffff;
    text-decoration: none;
}

.left {
    text-align: left;
}

/* ============================================================================ */
/*  EFFECTS                                                                     */
/* ============================================================================ */

.button1 {
    height: 30px;
    background: linear-gradient(150deg,rgba(23, 0, 115, 1) 50%, rgba(117, 143, 255, 1) 100%);
    font-family: "rainyhearts";
    font-size: 0.5rem;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 0 1em 0.1em #00025c;
    outline: none;
    border: none;
    border-radius: 10px;
    margin-bottom: 10px;
}

.button2 {
    height: 30px;
    background: linear-gradient(150deg,rgb(236, 89, 255) 25%, rgb(117, 255, 248) 100%);
    font-family: "rainyhearts";
    font-size: 0.5rem;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 0 1em 0.1em #54005c;
    outline: none;
    border: none;
    border-radius: 10px;
    margin-bottom: 10px;
}

.button3 {
    height: 30px;
    background: #000000;
    font-family: "rainyhearts";
    font-size: 0.5rem;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 0 1em 0.1em #2b2b2b;
    outline: none;
    border: none;
    border-radius: 10px;
    margin-bottom: 10px;
}

.button4 {
    height: 30px;
    background: #ffffff;
    font-family: "rainyhearts";
    font-size: 0.5rem;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    box-shadow: 0 0 1em 0.1em #2b2b2b;
    outline: none;
    border: none;
    border-radius: 10px;
    margin-bottom: 10px;
}

.button1:hover {
    transition: .3s;
    background: rgba(117, 143, 255, 1);
    font-size: 0.55rem;
    box-shadow: 0 0 1em 0.1em #4b4ca8;
}

.button2:hover {
    transition: .3s;
    background: rgb(250, 117, 255);
    font-size: 0.55rem;
    box-shadow: 0 0 1em 0.1em #a84ba8;
}

.button3:hover {
    transition: .3s;
    background: rgb(255, 255, 255);
    color: #000000;
    font-size: 0.55rem;
    box-shadow: 0 0 1em 0.1em #ffffff;
}

.button4:hover {
    transition: .3s;
    background: rgb(0, 0, 0);
    color: #ffffff;
    font-size: 0.55rem;
    box-shadow: 0 0 1em 0.1em #ffffff;
}

header nav a:hover {
    transition: .3s;
    color: #ffffff;
}

.pronouns:hover {
    transition: .3s;
    background: #ff99ff;
    box-shadow: 0 0 1em 0.1em #ff99ff;
}

.highlight:hover {
    transition: .3s;
    color: white;
    text-shadow: 2px 2px 20px #ff99ff;
}