:root {
    --ot-green: #58B475;
    --tnt-tx-color: #39364B;
    --tnt-bg-color: #E7E7E7;
    --wr-tx-color: #DCF2EF;
    --wr-bg-color: #567B74;
}

.olvera-title {
    font-family: kari-display-pro, sans-serif;
    color: white;
    font-size: 30px;
    -webkit-text-stroke: .5px black;
    margin: 0;
}

.tech-title {
    font-family: lores-9-wide-bold-alt-oaklan, sans-serif;
    color: #58b475;
    font-size: 66px;
    margin: 0;
}

.ot-tb {
    width: 368px;
    height: 182px;
    padding-left: 17px;
}

.ot-home-text {
    text-align: center;
}

/*--- BODIES BODIES BODIES ---*/

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    margin: 0;
}

.tnt-body {
    background-color: var(--tnt-bg-color);
    color: var(--tnt-tx-color);
}

.wr-body {
    background-color: var(--wr-bg-color);
    color: var(--wr-tx-color);
}

h1, h2, h3 {
    font-family: lores-9-wide-bold-alt-oaklan, sans-serif;
}

/*--- NAVEGATION BAR ---*/

.navbar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
    font-family: kari-display-pro, sans-serif;
}

.tnt-navbar {
    color: var(--tnt-tx-color);
}

.wr-navbar {
    color: var(--wr-tx-color);
}

.navbar a:hover {
    color: var(--ot-green);
}

.navbar li {
    float: left;
}

.site {
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: minmax(0, 1fr);
}

a {
    border-radius: 10px;
    padding: 10px;
    display: inline;
    text-align: center;
    color: #58b475;
    margin: 10px;
    text-decoration: none;
    /*--- This code adds some shadow to all the links
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    ---*/
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.socials {
    display: flex;
}

.socials a {
    padding: 10px;
    margin: 10px;
}

.socials a:hover {
    background-color: var(--ot-green);
    color: black;
}

.kofi {
    display: flex;
    justify-content: center;
}

main {
    padding: 20px;
}
/*--- FOOTERS ---*/
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px;
}

.olvera-footer {
    font-family: kari-display-pro, sans-serif;
    color: white;
    font-size: 12px;
}
.tech-footer {
    font-family: lores-9-wide-bold-alt-oaklan, sans-serif;
    color: #58b475;
}
.copy-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    margin-top: 15px;
}
.copy {
    padding-left: 5px;
}
/*--- APPLE PODCASTS EMBEDED ---*/
.podcasts {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.tnt-title:hover {
    color: var(--tnt-tx-color);
    background-color: var(--tnt-bg-color);
}

.wr-title:hover {
    color: var(--wr-tx-color);
    background-color: var(--wr-bg-color);
}

/*--- RESPONSIBE WEB DESING ---*/
@media (max-widht: 450px) {
    .ot-home-text {
        display: inline;
    }
    .home-title {
        width: 80dvw;
    }
}

.show {
    padding: 10px;
    position: relative;
}

.show img {
    width: 400px;
    height: 400px;
}

.tnt-cardtx {
    color: #39364B;
    font-family: lores-9-wide-bold-alt-oaklan, sans-serif;
    text-align: center;
    position: absolute;
    top: 10%;
    left: 7%;
    display: flex;
    font-size: 31px;
}

.tnt-cardtx span {
    margin: 0 10px;
}

.tnt-cardtx:hover {
    background-color: unset;
    color: var(--tnt-tx-color);
}

.wr-cardtx {
    color: #DCF2EF;
    font-family: lores-9-wide-bold-alt-oaklan, sans-serif;
    text-align: center;
    position: absolute;
    top: 20%;
    left: 7%;
    display: flex;
    font-size: 36px;
}

.wr-cardtx span {
    margin: 0 10px;
}

.wr-cardtx:hover {
    background-color: unset;
    color: var(--wr-tx-color);
}