:root {
    --default-textcolor: #fff3f8;
    --default-color: #d20149;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Nunito', sans-serif;
    color: #fefefe;
    margin: 0;
    padding: 0;
    font-size: 19px;
    font-weight: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    background-color: #000;
    line-height: 1.4;
    color: var(--default-textcolor);
    overflow-x: unset;
    overflow-y: unset;
}

#background {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    background-image: url('images/madar_viven_web_bcg.jpg');
    background-position: center;
    background-size: cover;
}

#content {
    height: 100%;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    overflow-y: auto;
}

#map {
    z-index: 1;
    height: 100%;
    width: 30%;
    filter: drop-shadow(0 0 20px #000);
}

#map iframe {
    width: 100%;
    height: 100%;
    display: flex;
    filter: invert(90%) hue-rotate(200deg);
}

header {
    order: 1;
    width: 100%;
    background-color: rgb(0 0 0 / 57%);
}

h1 {
    margin: 1em;
    padding: 0;
    font-size: 1rem;
    text-align: center;
    color: #3c3c3c;
}

h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5em;
    margin: 1em 0 0.5em 0;
    padding: 0;
    font-weight: 400;
    line-height: 1;
}

content {
    flex: 1;
    order: 2;
    max-width: calc(100% - 4rem);
    width: 991px;
    margin: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo {
    max-width: 18vw;
    filter: drop-shadow(0 0 20px #000);
}

p {
    margin: 1em 0;
}

.minimenu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.minimenu a {
    color: var(--default-color);
    text-decoration: none;
    padding: 0.5em 1em 0.5em 0.75em;
    margin: 0 0.25em;
    background-color: rgb(0 0 0 / 40%);
    border-radius: 2em;
    display: flex;
    align-items: center;
}

.minimenu a:hover {
    color: #fff;
}

.minimenu a span {
    text-transform: uppercase;
    font-weight: 700;
    padding-top: 0.1em;
}

.minimenu a i {
    font-size: 1.3em;
    padding-right: 0.4em;
    color: #fff;
    opacity: 0.3;
}

.minimenu a:hover i {
    opacity: 1;
}

.center {
    text-align: center;
}

.contact {
    font-size: 0.8em;
}

.ikonok {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.ikonok a {
    width: 25%;
    color: var(--default-color);
    text-decoration: none;
    margin: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    filter: drop-shadow(0 0 10px #000);
}

.ikonok a i {
    font-size: 2.4rem;
}

.ikonok a:hover {
    color: #fff;
}

.ikonok a span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.8em;
    font-weight: 800;
    margin-top: 1em;
    opacity: 0.3;
    color: #fff;
}

.profile-picture {
    display: flex;
    margin-top: 1em;
    padding: 4px;
    background-color: var(--default-color);
    width: 140px;
    height: 140px;
    border-radius: 200px;
    overflow: hidden;
}

.profile-picture img {
    border-radius: 200px;
    overflow: hidden;
}

footer {
    order: 3;
    max-width: 100%;
    width: 991px;
}

@media screen and (max-width: 1200px) {
    .logo {
        max-width: 25vw;
    }
    
    .ikonok a span {
        display: none;
    }
    
    .profile-picture {
        left: -8px;
        padding: 3px;
        width: 110px;
        height: 110px;
    }
}

@media screen and (max-width: 991px) {
    html, body {
        font-size: 17px;
    }

    .logo {
        max-width: 35vw;
    }
    
    content {
        width: auto;
    }
    
    h1 {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 860px) {
    content {
        order: 1;
        margin: 1.2rem;
    }
    
    header {
        order: 3;
    }
    
    footer {
        order: 2;
    }
    
    h1 {
        font-weight: 400;
    }
    
    .logo {
        max-width: 50vw;
    }
    
    h2 {
        margin: 0.75em 0 0.25em 0;
        font-size: 2.1em;
    }
    
    .minimenu a {
        font-size: 0.9em;
    }
    
    .ikonok a {
        margin: 0.9rem 1.6rem;
    }
    
    .ikonok a i {
        font-size: 1.9rem;
    }
    
    .profile-picture {
        left: -8px;
        padding: 3px;
        width: 90px;
        height: 90px;
    }
}

@media (orientation: landscape) {
    #map {
        height: calc(100% - 4em);
        width: 30%;
        margin: 2em;
        border-radius: 2em;
        overflow: hidden;
    }
}

@media (orientation: landscape) and (max-width: 1200px) {
    #map {
        height: calc(100% - 2em);
        width: 40%;
        margin: 1em;
        border-radius: 2em;
        overflow: hidden;
    }
}

@media (orientation: landscape) and (max-width: 991px) {
    #map {
        width: 50%;
    }
}

@media (orientation: landscape) and (max-width: 860px) {
    #map {
        display: none;
    }
}

@media (orientation: portrait) {
    #map {
        display: none;
    }
    
    .profile-picture {
        top: 5vh;
    }
}