@font-face {
    font-family: Rubik;
    src: url(../fonts/Rubik-Light.ttf);
}

@font-face {
    font-family: Rubik-Bold;
    src: url(../fonts/Rubik-SemiBold.ttf);
}

:root {
    --navbar-color-orange: #ff754c;
    --navbar-color-yellow: #ffc549;
    --text-font: Rubik;
    --text-font-bold: Rubik-Bold;
    --text-color: #352c3a;
}

::-moz-selection { /* Code for Firefox */
    color: #ffffff;
    background: var(--navbar-color-orange);
}
  
::selection {
    color: #ffffff;
    background: var(--navbar-color-orange);
}

h1 {
    font-family: var(--text-font);
    color: var(--text-color);
    font-size: 40px;
}

p {
    font-family: var(--text-font);
    color: var(--text-color);
    text-align: justify;
    font-size: 20px;
}

body {
    background-color: var(--navbar-color-yellow);
}

.orange-lines {
    background-color: var(--navbar-color-orange);
    width: 100%;
    height: 40px;
}

.navbar-and-content {
    display: flex;
}

.navbar-and-content .content {
    display: grid;
    width: calc(100% - 20%);
    padding: 40px 5%;
}

.content h1 {
    padding-bottom: 20px;
}

.poems-group {
    display: grid;
}

.poem {
    width: 100%;
    justify-content: center;
    display: grid;
}

.poem-content {
    display: grid;
    width: 100%;
    height: fit-content;
}

.columns {
    display: flex;
    width: 100%;
    justify-content: left;
}

.big-title {
    width: 100%;
    text-align: left;
    color: var(--navbar-color-orange);
    font-family: var(--text-font-bold);
    user-select: none;
    font-size: 30px;
    padding-bottom: 10px;
}

.title {
    width: 10%;
    text-align: right;
    color: var(--navbar-color-orange);
    font-family: var(--text-font-bold);
    user-select: none;
}

.text {
    width: 40%;
    text-align: left;
    padding: 0 0 20px 20px;
    user-select: none;
}

@media only screen and (max-width: 1000px) {

    .columns {
        display: grid;
    }

    .title {
        width: 100%;
        text-align: left;
    }

    .text {
        width: 100%;
    }

}

@media only screen and (max-width: 800px) {
    
    .navbar-and-content {
        display: grid;
    }

    .navbar-and-content .content {
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
    }

    .columns {
        display: grid;
    }

    .title {
        width: 100%;
        text-align: left;
        padding-left: 0;
    }

    .text {
        width: 100%;
        padding-left: 0;
    }

    .content h1 {
        padding-left: 5%;
        padding-top: 10px;
    }

    #orange1 {
        display: none;
    }

    .poems-group {
        width: 85%;
        padding-left: 7.5%;
    }
}
