﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Handlee', cursive;
    font-size: 1em;
    font-style: normal;
    font-weight: 400;
}

html {
    height: 100%;
}

body {
    height: 100%;
    padding: 0.5em;
    color: #262626;
    background-image: url("background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#head_container {
	width: 100%;
}

#bodycontent {
    padding-bottom: 2em;
}

#head_container p {
    text-align: left;
}


#head_container p {
    font-size: 3em; /* 1em = 14pt*/
    font-weight: bold;
}

h1, #head_container p {
    text-align: center;
    padding: 1em 0 1em 0;
}

#head_container p {
    font-size: 4em; /* 1em = 14pt*/
}

h1 {
    font-size: 3em; /* 1em = 14pt*/
}

h2 {
    font-size: 2em;
    text-align: center;
    padding: 1.5em 0 0.5em 0;
}

h3 {
    text-align: right;
    font-weight: bold;
}

.h2_container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 1em;
    font-size: 1.5em;
}

.h3_sub {
    text-align: right;
    font-size: large;
}
.contact:before { 
    content: attr(data-website) "\0040" attr(data-user);
    unicode-bidi: bidi-override;
    direction: rtl;
    cursor: pointer;
}
  
@media screen and (width < 500px)  {
    h1 {
        padding-bottom: 0;
    }

    .h2_container {
        display: grid;
        grid-template-columns: auto;
        grid-gap: 0em;
    }        

    h3, .h3_sub {
        padding-bottom: 0.4em;
        text-align: center;
    }    
    h3 {
        padding-top: 1em;
    }
    #contactblock {
        margin: auto;
    }
    #contactblock, #contactblock p {
        width: fit-content;
    }
}