/* @media screen and (max-width: 900px) { */
a{
    text-decoration: none;
    color: white;
}
main a{
    text-decoration: underline;
    transition: color 0.3s ease;
}
main a:hover{
    transition: color 0.3s ease;
    color: lightblue;
}
code{
    background-color: grey;
}
html{
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}
body{
    margin: 0; padding: 0; background-color: rgb(20, 20, 20);
    color: white; font-size: 40pt;
}
header{
    font-size: 70pt; background-color: rgb(216, 71, 19); width: 100%; padding: 10px 180px;
    position: fixed; line-height: 180px; top: 0; font-weight: bolder;
}
img{
    max-width: 100%;
    max-height: 50vh;
}
.posts{
    line-height: 150%;
}


/* } */

@media screen and (min-width: 1000px) {
a {
    text-decoration: none;
    color: white;
}

main a {
    text-decoration: underline;
    transition: color 0.3s ease;
}

main a:hover {
    transition: color 0.3s ease;
    color: lightblue;
}

code {
    background-color: grey;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-size: 18pt;
    line-height: 2em;
}

.posts{
    letter-spacing: 1.2pt;
}

header {
    background-color: rgb(216, 71, 19);
    width: 100%;
    padding: 10px 80px;
    position: fixed;
    line-height: 80px;
    top: 0;
    font-size: 28pt;
}

img {
    max-height: 200px;
}
.half-img{
    max-width: 49%;
}
.songoftheday{
    margin: 2%;
    width: minmax(90%, fit-content);
}
.content{
    width: 1500px; display: grid; grid-template-columns: 35em 1fr 400px;
    align-self: center;
}
}