@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    margin-left: 15%;
    margin-right: 15%;

    background-color: rgb(20,20,20);
    color: rgb(255,255,255);

    font-family: "Raleway", sans-serif;
}

h1 {
    padding-top: 50px;

    font-size: 2.5em;
    color: orange;
    margin-bottom: 20px;
}

select {    
    padding: 5px;
    width: 375px;
    border: none;
    border-radius: 8px;
    outline-color: rgb(106, 0, 255);

    transition: all 0.3s ease;
}

button {
    margin-top: 10px;
    padding: 5px;
    width: 125px;
    border: none;
    border-radius: 5px;
    background-color: rgb(106, 0, 255);
    color: white;
    font-weight: bold;
    font-size: 14px;

    transition: all 0.3s ease;
}

button:hover {
    transition: all 0.3s ease;

    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    width: 133px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

h2 {
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    height: 64px;
}

/* FAVICON */

header .image_container {
    display: block;

    width: 45px;
    height: 45px;
    padding-top: 32px;
}

header .image_container .favicon {
    width: 100%;
    height: 100%;
}

/* NAVIGATION */

header .header_navigation .hdnv_links {
    display: flex;
    list-style: none;
}

header .header_navigation .hdnv_links .hdnvlks_container {
    display: inline-block;
    padding-top: 45px;
    padding-left: 32px;
}

header .header_navigation .hdnv_links .hdnvlks_container .nv_link {
    color: rgb(255,255,255);
    text-decoration: none;
    font-size: initial;

    transition: all 0.3s ease;
}

header .header_navigation .hdnv_links .hdnvlks_container .nv_link:hover {
    color: rgb(106, 0, 255);
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
}