:root {
    --DarkBlue: #285367;
    --DarkEgg: #91B6B9;
    --Stone: #F5F0E1;
    --GreyBlue: #5F7D8D;
    --FLGreen: #0CE281;
    --FLGrey: #4A4B4C;
    --white: #FFFFFF;
}

h1 {
    padding: 0;
    margin: 0;
    font-size: 30pt;
    font-weight: 400;
}

h2 {
    padding: 0;
    margin: 0;
    font-size: 18pt;
    font-weight: 350;
}

h3 {
    padding: 0;
    margin: 0;
    font-size: 15pt;
    font-weight: 350;
}

h4 {
    margin: 0;
    padding: 0;
    font-size: 12pt;
    font-weight: 350;
}

.title-tag {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    vertical-align: middle;
    left: 0;
    right: 0;
    top: 0;
    text-align: center;
    padding: 0;
    padding-top: 1%;
    padding-bottom: 3%;
    box-shadow: 8.0px 16.0px 16.0px hsl(0deg 0% 0% / 0.25);
    line-height: 200%;
    font-weight: 300;
    font-size: 15pt;
}

@media all and (min-width: 1440px)
/* Desktop */
    {
    .title-tag {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        width: 200px;
        height: 30px;
    }
}

@media all and (min-width: 1000px) and (max-width: 1440px)
/* tablet landscape */
    {
    h1 {
        font-size: 20pt;
    }

    h2 {
        font-size: 16pt;
    }

    h3 {
        font-size: 12pt;
    }

    h4 {
        font-size: 10pt;
    }

    .title-tag {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        padding-top: 2%;
        padding-bottom: 2%;
        width: 30%;
    }
}

@media all and (min-width: 738px) and (max-width: 1000px)
/* tablet */
    {
    h1 {
        font-size: 18pt;
    }

    h2 {
        font-size: 12pt;
    }

    h3 {
        font-size: 11pt;
    }

    h4 {
        font-size: 8pt;
    }

    .title-tag {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        padding-top: 0%;
        padding-bottom: 2%;
        width: 50%;
    }
}

@media all and (min-width: 50px) and (max-width: 738px)
/* phone */
    {
    h1 {
        font-size: 15pt;
    }

    h2 {
        font-size: 12pt;
    }

    h3 {
        font-size: 11pt;
    }

    h4 {
        font-size: 10pt;
    }

    .title-tag {
        padding: 0%;
        padding-bottom: 1.5%;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        width: 200px;
        height: 35px;
    }
}

body {
    margin: auto;
    padding: 2%;
    margin-top: 1%;
    font-family: 'Roboto Slab';
    max-width: 1920px;
    font-style: var(--FLGrey);
}