* {
    font-family: Xolonium;
    color: white;
    background-color: inherit;
    /* background-color: #212121; */
    font-family: 'Source Sans Pro', sans-serif;
}

.heading {
    font-weight: 600;
}

#alert {
    position: absolute;
    top: 30px;
    border-radius: 10px;
    z-index: 99;
    width: max-content;
    text-align: center;
    padding: 5px;
    float: right;
    right: 250px;
    transition-duration: 500ms;
}

.success {
    color: rgb(66, 187, 66);
    border: 2px solid rgb(5, 90, 41);
}

.failure {
    color: rgb(199, 69, 69);
    border: 2px solid red;
}

body,
html {
    margin: 0;
    /* background-image: url('/assets/images/background.jpg'); */
    background-color: #212121;
    background-repeat: no-repeat;
    background-size: cover;
}

body {
    position: relative;
    height: 100%;
}

header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 80px;
    margin: auto;
    display: inline-flex;
    justify-content: space-between;
    /* box-shadow: 0px 0px 15px 0px red; */
    opacity: 0.8;
    background-color: black;
    z-index: 9;
}

header * {
    font-size: 1.6rem;
    text-decoration: none;
}

.favouriteRouter * {
    border-radius: 10px;
    background-color: inherit;
}

.favouriteRouter *:hover {
    color: red;
    transform: scale(1.2);
    background-color: white;
}

.appName {
    padding-left: 20px;
}

.appName a {
    text-decoration: none;
    color: #911F27;
}

.logo {
    width: 40px;
    margin: 10px;
}

.searchContainer input {
    background-color: inherit;
    color: #fff;
    height: 15px;
    width: 120px;
}

.searchContainer input:focus {
    width: 200%;
    transition: all 1.5s ease;
    transform: scale(1.1);
}

.searchContainer input:hover {
    width: 200%;
    /* transition: 1.1s ease-in-out; */
    transition: all 1.5s ease-in-out;
    transform: scale(1.1);
}

header input {
    height: 35px;
    width: 100%;
    padding: 15px;
    /* border: 1px solid red; */
    border-radius: 25px;
}

header input:focus {
    /* border: 3px solid red; */
    box-shadow: rgba(252, 250, 250, 0.56) 0px 2px 30px 2px;
}

header button {
    margin-right: 30px;
}

header button a {
    text-decoration: none;
}

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


/* Main result body */

#resultContainer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 80px;
    /* border: 2px solid red; */
    padding: 0;
    margin: 0;
}

#results {
    /* margin: 20px; */
    padding-bottom: 10px;
    font-size: 2rem;
    color: #911F27;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top: 30px;
    /* box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    background-color: rgba(26, 24, 24, 0.342); */
}

.notice {
    width: 100%;
    padding-bottom: 10px;
    font-size: 2.5rem;
    color: #911F27;
    /* display: flex;
    flex-direction: row;
    flex-wrap: wrap; */
    text-align: center;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    background-color: rgba(26, 24, 24, 0.342);
}

.favouriteRouter {
    padding: 10px;
}


/* Cards */

.card-container {
    display: flex;
    flex-direction: column;
    width: 220px;
    height: 280px;
    /* border: 2px solid rgb(255, 0, 0); */
    border-radius: 15px;
    box-shadow: 0px 0px 15px 0px #646464;
    margin: 10px;
}

.card-container:hover {
    transform: scale(1.1);
    box-shadow: rgba(243, 239, 239, 0.25) 0px 14px 28px, rgba(252, 251, 251, 0.22) 0px 10px 10px;
}

.card-img-container img {
    height: 180px;
    width: 180px;
    border-radius: 15px;
}

.card-name {
    padding: 5px;
    font-size: 20px;
}

.card-name:hover {
    /* color: red; */
    cursor: pointer;
    color: rgb(42, 42, 243);
}

.btnfos-5 {
    border: 0 solid;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
    outline: 1px solid;
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 0px;
    text-shadow: none;
    -webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    outline-color: rgba(255, 255, 255, 0.5);
    outline-offset: 0px;
}

.btnfos-5:hover {
    border: 1px solid;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
    outline-offset: 15px;
    outline-color: rgba(255, 255, 255, 0);
    text-shadow: 1px 1px 2px #427388;
}