/*
 Theme Name: Medo
 Theme URI: medo.work/medotheme/
 Description: Child of TwentyTwentyFive
 Author: Matthew McClelland
 Author URI: https://medo.work
 Template: twentytwentyfive
 Version: 1.0.0
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: 
*/

/* * * * * * * * * 
* 
** Top Level 
*/

/*
html {}
body {}
* {}
*/

/* Remove Title */
.wp-block-post-title {
    display: none;
}

/*
** Main
*/

p,
a,
ol,
ul,
li {
    font-family: zeitung-micro, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #3000cf;
}

h1,
h2,
h3 {
    font-family: zeitung, sans-serif;
    font-weight: 900;
    color: #3000cf;
}

:lang(ja) {
    font-family: dela-gothic-one, sans-serif;
    font-weight: 400;
    font-style: normal;
}

a {
    text-decoration: none;
}

/* p {} */

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.15rem;
}

h6 {
    font-size: 1rem;
}

/* 
** Launcher Groups 
*/

.launcher-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.launcher-title {
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
}

.launcher-group {
    width: 100%;
    gap: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

a:has('.launcher-button') {
    margin: 10px;
}

.launcher-button {
    flex-grow: 1;
    text-align: center;
    padding: 7px 14px;
    border: 1px solid #3000cf;
    background-color: unset;
    transition: background-color 100ms linear;
}

.launcher-button:hover {
    background-color: #3000cf;
    color: #fff;
}

.launcher-text {
    font-size: 1.2rem;
}

input.searchbar {
    font-family: zeitung-micro, sans-serif;
    font-size: 1.2rem;
    padding: 7px 14px;
    width: 500px;
    background-color: unset;
    border: 1px solid #3000cf;
    color: #3000cf;
}

input.searchbar::placeholder {
    color: #aeadff;
    text-align: center;
}

input.searchbar:active,
input.searchbar:focus {
    border: 1px solid #3000cf;
    background-color: #3000cf;
    color: #fff; 
    caret-color: #fff;
    outline: none;
    box-shadow: none;
}

.searchsubmit {
    cursor: pointer;
    font-family: zeitung-micro, sans-serif;
    color: #3000cf;
    font-size: 1.2rem;
}

.code {
    font-family: zeitung-mono, monospace;
    font-size: 1.1rem;
}