@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../styles/fonts/PPNeueMontreal-Regular.woff2') format('woff2'),
        url('../styles/fonts/PPNeueMontreal-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../styles/fonts/PPNeueMontreal-Medium.woff2') format('woff2'),
        url('../styles/fonts/PPNeueMontreal-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f0f0f0;
    font-family: 'PP Neue Montreal', 'Helvetica Neue', Arial, Helvetica, sans-serif;
    line-height: 1.5rem;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #000865;
        color: white;
    }

    a,
    a:visited,
    a:hover,
    a:active {
        color: lightgoldenrodyellow;
    }
}

p {
    margin-top: 0.5rem;
}

br {
    line-height: 0.5rem;
    margin-bottom: 0.5rem;
}

::selection {
    color: red;
}

.words {
    padding: 1rem;
    line-height: 1.5rem;
    max-height: calc(100vh - 5rem);
    overflow: auto;
    min-width: 40vw;
    max-width: 300px;
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox */
}

.words::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

input {
    width: 250px;
}

label {
    color: black;
}

.adjustments {
    background-color: whitesmoke;
    border-top: 1px solid gray;
    position: fixed;
    width: 100vw;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    bottom: 0;
    gap: 1rem;
    justify-content: space-between;
    z-index: 999;
}

.adjust-verbosity {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
}

#verbosity-scale {
    max-width: 15vw;
    width: fit-content;
}

.adjust-verbosity,
.professional {
    background-color: whitesmoke;
    width: fit-content;
    padding: 0.75rem;
    border: 1px solid gray;
}

.professional input {
    width: min-content;
    margin-right: 0.25rem;
}

.phone {
    height: 150px;
    transform: rotate(200deg);
    position: fixed;
    top: -1rem;
    right: -1rem;
    filter: drop-shadow(0 0 3px gray);
    animation: ring 3s step-start infinite;
    transition: 3s;
}

.phone:hover {
    filter: drop-shadow(0 0 5px yellow);
}

@keyframes ring {
    25% {
        rotate: -30deg;
    }

    50% {
        rotate: 0deg;
    }

    75% {
        rotate: 30deg;
    }
}

li {
    margin: 0.5rem 0 0.25rem 1.5rem;
    list-style-type: "✹  ";
}

li:hover {
    list-style-type: "❂  ";
}

ul {
    margin-bottom: 1rem;
}

.andy-testimonial {
    position: fixed;
    right: 0;
    bottom: -7vw;
    transition: 5s;
}

.andy-testimonial:hover {
    transform: translateY(-10vw);
}

.andy {
    width: 30vw;
    max-width: 150px;
    filter: drop-shadow(0 0 7px gold);
    animation: secret 3s infinite;
}

@keyframes secret {
    50% {
        transform: translateX(1rem);
    }
}

.andy-testimonial:hover .andy {
    animation: none;
}

.testimonial {
    width: fit-content;
    height: fit-content;
    margin: 0 1rem 1rem 0;
    background-color: white;
    color: red;
    border: 1px solid gray;
    padding: 0.5rem;
    filter: opacity(0%);
    position: absolute;
    z-index: 99;
    top: -10vh;
    transition: 6s;
    text-align: center;
}

.andy-testimonial:hover .testimonial {
    filter: opacity(100%);
}