:root {
    --sidebar-width: 350px;
    --glass: rgba(255, 255, 255, 0.2);
    --glass-icon: #ffffff;
    --gradient: linear-gradient(35deg, red, purple);
    --option: #fff;
}

body {
    background-color: white;
}

h1 {
    font-family: "Century Gothic Bold";
    font-weight: bold;
    margin: 0px;
    color: #373739;
}

h2 {
    font-family: "Century Gothic Bold";
    font-weight: bold;
    margin: 0px;
    color: #373739;
}

/* fonts */

@font-face
{
    src: url("../font/CenturyGothic.ttf");
    font-family: "Century Gothic";
}

@font-face
{
    src: url("../font/GOTHICB0.TTF");
    font-family: "Century Gothic Bold";
}

/* hero */

.resultsPanel {
    max-width: 820px;
    width: 70%;
    position: relative;
    margin-top: 0px;
    display:inline-block;
    transform: translateY(-10px);
}

/* results */

.details .thumbnail {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
}

.results {
    text-align: center;
}

.resultsPanel {
    margin-left: 20px;
}

.results h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.resultsPanel h1 {
    
    margin: 15px;
    margin-bottom: 5px;
}


/* entry */

.entry {
    position: relative;
    width: 100%;
    box-shadow: #bdbdbd 0px 1px 10px;
    transition: 100ms box-shadow, 100ms transform;
    display: inline-block;
    border-radius: 6px;
    text-align: left;
    margin: 15px;
}

.entry:hover {
    cursor: pointer;
    box-shadow: rgb(165, 165, 165) 0px 1px 12px;
    box-sizing: border-box;
}

.top {
    position: relative;
    width: 100%;
    height: 250px;
    margin: 0px 0px;
    vertical-align: bottom;
}

.bottom {
    width: 100%;
    height: fit-content;
    margin: 0px;
}

.details {
    padding: 40px;
}

.width {
    margin: 0px;
    position: absolute;
    bottom: -5px;
    transform: translate(-50%, 100%);
    left: 50%;
    color:#6b99d7;
    width: 100px;
    text-align: center;
}
.height {
    margin: 0px;
    position: absolute;
    top: -5px;
    width: 100px;
    transform: translate(-50%, -100%);
    left: 50%;
    color:#6b99d7;
    text-align: center;
}

.details p {
    margin: 0px;
    vertical-align: bottom;
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.details ul li {
    font-size: 1.2rem;
}

.details p b {
    font-family: "Century Gothic Bold";
    margin-right: 15px;
    color:#4a4a4a;
}

.details br {
    display: block;
    content: "";
    margin-top: 10px;
}

.details ul {
    margin: 0px;
    font-size: 1.2rem;
    list-style-type: "-  ";
}

.screenFavorHeight {
    position: absolute;
    aspect-ratio: calc(9/16);
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #6b99d7;
}

.screenFavorWidth {
    position: absolute;
    aspect-ratio: calc(16/9);
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #6b99d7;
}

.rangeSelect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    margin-top: 5px;
    width: 70px;
    border: none;
    transition: 50ms transform, 50ms width;
    filter: saturate(10%);
    transform: translate(-10px, -10px);
}

.rangeSelect:hover {
    transform: translate(-10px, -10px) scale(1.03);
    cursor: pointer;
    filter: saturate(70%); 
}

.selectedRange {
    transition: 0s transform;
    filter: saturate(100%) !important; 
    transform: scale(1.1) translate(-10px, -10px) !important;
}

.narrowSelect {
    width: 197px;
}