/******************************************** GENERAL **********************************************/
*,
*::before,
*::after {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: var(--cinzel);
    text-align: center;

    font-size: 2.8vh;
    line-height: 4vh;
}

a {
    text-decoration: none;
}

.flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#backtotop {
    position: fixed;
    top: 1vh;
    left: 1vh;
    width: 5vh;
    height: 5vh;
    background-color: white;
    border: 1px solid var(--lightgrey);
    border-radius: 50%;
    z-index: 150;
    cursor: pointer;
    justify-content: center;
    transform: scale(0);
    transition: 0.3s;
}

#backtotop-arrow {
    width: 1.5vw;
    height: 0.75vw;
    background-color: var(--lightgrey);
    clip-path: polygon(0 100%, 100% 100%, 50% 0,  0 100%);
    animation: backtotop 1s infinite linear;
}

@keyframes backtotop {
    0% {
        opacity: 0;
        transform: translateY(0.25vh);
    }

    50% {
        opacity: 1;
        transform: translateY(-0.5vh);
    }

    100% {
        opacity: 1;
        transform: translateY(-1.25vh);
    }
}

#main_content {
    height: 100vh;
    width: 100vw;
    position: fixed;
    left: 0px;
    overflow: hidden;
}

.main_content-band {
    margin-top: 100vh;
    height: 100vh;
    width: 100vw;
}

#about_me-container {
    height: 75vh;
    margin-top: calc(100vh - 5vw);
}

.main_content-field {
    background-color: white;
    padding: 5vh;
    align-items: center;
}

#main_content-scroller {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 130;
    
    height: 100vh;
    width: 100vw;
    
    padding-top: 5vw;
    overflow-y: scroll;
    overflow-x: hidden;
}

.main_content-side {
    height: 100vh;
    overflow: hidden;
}

.side-30 {
    height: 75vh;
    width: 30vw;
}

.side-50 {
    width: 50vw;
}

.side-70 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 75vh;
    width: 70vw;
    padding-left: 5vw;
    padding-right: 5vw;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5vh;
    width: 100%;
}

.title-text {
    text-align: center;
    color: var(--darkgrey);
    font-size: 4.5vh;
    line-height: 6.5vh;
}

.title-line {
    width: 10vw;
    height: 2px;
    background-color: var(--darkgrey);
    margin-top: 0.5vh;
}

.features {
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    font-size: 1.8vh;
    line-height: 3.7vh;
    color: var(--darkgrey);
}

.dot {
    height: 0.5vh;
    width: 0.5vh;
    border-radius: 50%;
    background-color: var(--darkgrey);
    margin: 0px 3vh;
}

.dot-container {
    padding-top: .75vw;
}

.icon-container {
    width: 15vw;
    min-width: 170px;
    height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.icon-icon {
    width: 15vw;
    min-height: 100px;
    min-width: 100px;
    height: 15vw;
}

.icon-label {
    width: 15vw;
    min-width: 170px;
    height: calc(20vh - 15vw);
    color: var(--darkgrey);
    text-align: center;
    font-size: 1.8vh;
}

.social-icon {
    cursor: pointer;
    width: 5vh;
    font-size: 3vh;
    color: var(--darkgrey);
    justify-content: center;

    transition: .3s;
}

.social-icon:hover,
.social-icon:active {
    color: var(--middlegrey);
}

.button_container {
    width: 30vw;
    justify-content: center;
}

.button {
    width: 15vw;
    height: 5vh;
    justify-content: center;

    color: var(--darkgrey);
    background-color: var(--dirtypink);
    cursor: pointer;

    transition: .5s;
}

.button:hover {
    color: var(--dirtypink);
    background-color: var(--darkgrey);
}

.foreground_image {
    margin-left: -5vh;
    margin-right: -5vh;
    min-width: calc(100% + 10vh);
    min-height: 100%;
    object-fit: contain;
}

/****************************************** BACKGROUND *********************************************/
.sp-bg {
    display: none;
}

.main_content-bg-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
        
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_content-bg-image {
    z-index: 90;
    min-height: 100vh;
    min-width: 100vw;
    object-fit: contain;
}

#main_content-bg {
    height: auto;
    width: 100vw;
}

/******************************************** HEADER ***********************************************/
#header {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 120;
    
    width: 100vw;
    height: 10vh;
    min-height: 50px;
    
    justify-content: flex-start;
}

#header-logo {
    width: 20vw;
    height: 100%;
    min-width: 100px;
    background-image: url(../img/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin: 15px;
    margin-top: 6vh;
    cursor: pointer;
}

#header-menu {
    width: 70vw;
    height: 100%;
    justify-content: flex-start;
    
    margin-left: 15px;
}

.header-menu-option {
    margin: 2vw;
}

.header-menu-option,
.header-menu-option a {
    font-size: 2.2vh;
    cursor: pointer;
    transition: .5s;
}

.header-menu-option,
.header-menu-option a {
    color: var(--darkgrey);
}

.header-menu-option:first-of-type {
    margin-left: 20px;
}

.header-menu-option:last-of-type {
    margin-right: 20px;
}

#header-menu .dot {
    margin: 0px;
}

#header-socialmedia {
    width: 10vw;
    padding-right: 1vw;
    justify-content: space-around;
}

.header-menu-option:hover,
.header-menu-option:active,
.header-menu-option a:hover,
.header-menu-option a:active {
    color: var(--middlegrey);
}

#header-menu_sp {
    display: none;
}

#header-menu_sp-cover {
    display: none;
}

#header-menu_sp-list {
    display: none;
}

/******************************************** ABOUT ME **********************************************/
#about_me-left {
    justify-content: center;
}

#about_me-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

#about_me-signature {
    background-image: url('../img/signature.png');
    background-size: cover;
    width: 10vw;
    height: 2vw;
    margin-top: 3vh;
}

#about_me-features .feature {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

/***************************************** DECORATION ***********************************************/
.decoration-image {
    height: 75vh;
    width: 50vw;
    margin-left: -5vh;
    margin-right: -5vh;
    object-fit: cover;
}

#dream-container {
    height: 75vh;
}

#help-container {
    height: 75vh;
}

#decoration_process-container {
    height: 75vh;
}

#process-features {
    flex-direction: column;
    align-items: flex-start;
}

#process-features div {
    flex-direction: row;
    text-align: left;
}

#decoration_process-features .feature {
    text-align: left;
}

#decoration_process_2-container {
    height: 60vh;
}

#decoration_process_2 {
    margin-top: 10vh;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

#decoration_gallery-left {
    direction: rtl;
    overflow-y: scroll;
    height: 100%;
    align-items: flex-start;
}

#decoration_gallery-right {
    width: calc(73vw - 16vh) !important;
    justify-content: center; 
}

#decoration-pics-select {
    height: 100%;
    grid-template-columns: repeat(4, 16vh);
    grid-template-rows: repeat(16, 24vh);
    padding-right: 2vw;
}

#decoration-pics-bigpic {
    background-image: url(../img/decoration-gal_0.jpg);
}

/****************************************** GALLERY **********************************************/

.gallery-select {
    direction: ltr;
    display: grid;
    grid-gap: 3vh;
    padding-left: 2vw;
    padding-right: 0px;
}

.gallery-pic {
    width: 16vh;
    height: 24vh;
    overflow: hidden;
    object-fit: cover;

    border: 1px solid var(--darkgrey);
    cursor: pointer;
    transition: .5s;
}

.gallery-pic:hover {
    transform: scale(0.9);
}

.gallery-pics-arrow {
    height: 2.5vh;
    width: 1.25vh;
    background-color: var(--lightgrey);
    clip-path: polygon(0 0, 0 100%, 100% 50%, 0 0);

    cursor: pointer;

    transition: .5s;
}

.gallery-pics-arrow:hover {
    background-color: var(--middlegrey);
}

.gallery-pics-prev {
    transform: rotate(180deg);
    margin-right: 2.5vh;
}

.gallery-pics-next {
    margin-left: 2.5vh;
}

.gallery-bigpic-container {
    width: 30vw;
    height: 30vw;
    display: flex;
    justify-content: center;
    align-items: center;

}

.gallery-bigpic{
    display: block;
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: center;
}

.gallery-bigpic-L {
    width: 30vw;
    height: 20vw;
}

.gallery-bigpic-P {
    width: 29vw;
    height: 45vw;
}

.gallery-loadicon {
    display: none;
    justify-content: center;
    align-items: center;
}

.loadicon-row {
    width: 5vw;
    display: flex;
    justify-content: space-between;
}

.loadicon-dot-container {
    width: 1vw;
    height: 1vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loadicon-dot {
    border-radius: 50%;
}

.loadicon-dot_1 {
    animation: loadicon 1s infinite linear;
}

.loadicon-dot_2 {
    animation: loadicon 1s infinite linear;
    animation-delay: .3333s;
}

.loadicon-dot_3 {
    animation: loadicon 1s infinite linear;
    animation-delay: .6667s;
}

@keyframes loadicon {
    0%, 100% {
        background-color: var(--lightgrey);
        width: 50%;
        height: 50%;
    }

    50% {
        width: 100%;
        height: 100%;
        background-color: var(--middlegrey);
    }
}

/***************************************** CONTACT - INFO *******************************************/

#contact-destination_email {
    background-color: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin-bottom: 2vh;
    position: relative;
}

#contact-destination_email::ms-expand {
    display: none;
}

#contact-left-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    
    height: 85vh;
    padding: 2.5vh 10vh 7vh 10vh;
}

.contact-line {
    width: 15vw;
    justify-content: flex-start;
    transform: translateX(-1.5vh);
}

.contact-icon {
    color: var(--darkgrey);
    font-size: 4vh;
    margin-right: 5vh;
    transition: .3s;
}

.contact-labels {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-label {
    color: var(--darkgrey);
    transition: .3s;
    white-space: nowrap;
    font-size: 1.8vh;
    line-height: 3vh;
}

.contact-line:hover .contact-label {
    color: var(--middlegrey)
}

#contact-image {
    height: 40vh;
    margin: 5vh 5vh 5vh 5vh;
}

#contact-social {
    font-size: 3vh;
    color: var(--middlegrey);
    justify-content: center !important;
    transform: none !important;
}

#contact-social i {
    cursor: pointer;
    margin: 0px 3vh;
}

#contact-social i:hover {
    color: var(--darkgrey);
}

/***************************************** CONTACT - FORM ********************************************/

#contact-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#contact-right .title {
    transform: translateX(2.75vw);
}

#contact-form {
    margin-top: 10vh;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
    width: 37.5vw;
}

.contact-form-line {
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 2.5vh;
}

.contact-form-unit {
    align-items: flex-start;
    width: 34.5vw;
}

.contact-form-label {
    width: 10vw;
    color: var(--middlegrey);
    font-size: 2vh;
    text-align: right;
    padding-right: 4vh;
}

.contact-form-input {
    width: 26vw;
    border: 1px var(--middlegrey) solid;
    font-size: 2vh;
    padding: .5vh;
    font-family: sans-serif;
    color: var(--darkgrey);
}

.contact-form-input:focus {
    border: 1px var(--lightgrey) solid;
    -webkit-border: 1px var(--lightgrey) solid;
    background-color: var(--lightestgrey);
}

.contact-form-input::placeholder {
    color: var(--middlegrey);
}

#contact-message {
    height: 20vh;
}

#contact-submit {
    padding: 1vh 2vw;
    color: var(--darkgrey);
    background-color: var(--dirtypink);
    border: 1px var(--dirtypink) solid;
    font-family: var(--cinzel);
    
    cursor: pointer;
    transition: .2s;
}

#contact-submit:hover {
    background-color: var(--darkgrey);
    color: var(--dirtypink);
    border: 1px var(--darkgrey) solid;
}

#contact-thankyou {
    display: none;
    position: absolute;
    bottom: 0px;
    right: 0px;
    
    height: 90vh;
    width:50vw;
    padding: 0px 10vw;
    
    justify-content: center;
    background-color: var(--trans_1);
    
    color: var(--darkgrey);
    font-size: 3vh;
    line-height: 5vh; 
    text-align: center;
}

.contact-chk_icon {
    height: 3vh;
    width: 3vw;

    font-size: 1vh;
    color: var(--middlegrey);
}

#contact-asterisk-warning {
    font-size: 1.5vh;
}

#contact-chk_icon-placeholder {
    width: 3vw;
    margin-left: 1vw;
    height: 3vh;
}

#contact-message-icon {
    height: 20vh;
}

/*************************************** CONTACT - MESSENGER *****************************************/

#messenger {
    position: fixed;
    bottom: 2.9vh;
    right: 5.5vh;
    
    height: 5vh;
    font-size: 5vh;
    
    color: var(--middlegrey);

    cursor: pointer;
    
    z-index: 150;
}

#messenger-background {
    position: fixed;
    bottom: 3vh;
    right: 5vh;
    z-index: 110;
    
    width: 6vh;
    height: 6vh;

    border-radius: 3vh;
    padding-left: 3vh;
    overflow: hidden;
    
    background-color: white;
    border: 2px solid var(--lightgrey);
    color: white;
    
    transition: .5s;
    
    cursor: pointer;
}

#messenger-placeholder {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: white;
    height: 6vh;
    width: 6vh;
    z-index: 130;
}

#messenger:hover {
    color: var(--darkgrey);
}

#messenger:hover ~ #messenger-background,
#messenger-background:hover {
    width: 30vh;
}

#messenger:hover ~ #messenger-background::after,
#messenger-background:hover::after {
    font-family: sans-serif;
    white-space: nowrap;
    text-transform: uppercase;
    content: 'Messenger üzenet';
    color: var(--darkgrey);
}

/**************************************** RESPONSIVE DESIGN ******************************************/
/* NARROW SCREEN BROWSER */
@media screen and (max-width: 1500px) {
    .contact-form-label {
        width: 15vw;
    }

    .header-menu-option {
        font-size: 16px;
        margin-left: 15px;
    }

    .feature {
        font-size: 2.8vh;
    }
}

@media screen and (max-width: 1250px) {
    .header-menu-option {
        font-size: 2vw;
    }
}

/* LAPTOP */
@media screen
and (min-aspect-ratio: 2/1) {
    /* GENERAL STUFF */
    .feature {
        font-size: 2.5vh;
    }
    
    /* CONTACT-MESSENGER */
    #messenger-background {
        width: 50px;
        height: 50px;
        border-radius: 25px;
    }

    #messenger:hover ~ #messenger-background,
    #messenger-background:hover {
        width: 40vh;
    }
}

/* TABLET IN LANDSCAPE MODE */
@media screen and (min-width: 601px) and (max-width: 1100px) {
    /* GENERAL STUFF */
    .feature {
        font-size: 2vw;
    }

    .foreground_image {
        object-fit: cover;
    }

    .side-30 {
        padding: 0px;
    }

    .icon-container, .icon-icon, .icon-label {
        min-width: 0px;
    }

    .icon-label {
        font-size: 1.5vw;
    }

    .gallery-pic {
        width: 12vw;
        height: 18vw;
    }
    
    /* HEADER */
    #header-menu {
        width: 65vw;
    }

    .header-menu-option {
        font-size: 2vw;
        margin: 0px 0.5vw;
        margin-right: 1.5vw;
    }

    #header-socialmedia {
        width: 14vw;
    }

    /* CONTACT */
    .contact-form-unit {
        width: 35vw;
    }

    .contact-form-label {
        width: 15vw;
        font-size: 1.7vw;
    }

    .contact-form-input {
        width: 20vw;
    }

    .contact-label {
        font-size: 2vw;
    }

    /* BACKGROUND */
    .main_content-bg-image {
        height: 100%;
        width: auto;
    }

    /* ABOUT ME */
    #about_me-right {
        padding-top: 5vh;
    }

    /* DECORATION */
    #decoration_gallery-left {
        padding-left: 1vw;
    }

    #decoration-pics-select {
        grid-template-columns: repeat(3, 12vw);
        grid-template-rows: repeat(22, 18vw);
    }
}

/* SMALLER TABLET IN LANDSCAPE MODE */
@media screen and (max-width: 850px) {
    /* HEADER */
    #header-menu {
        margin-left: 0px;
    }

    .header-menu-option {
        /*font-size: 10px;*/
        margin: 1vw;
    }
}

/* TABLET IN PORTRAIT MODE OR SMALL TABLET IN LANDSCAPE MODE*/
@media screen and (min-width: 601px) and (max-width: 750px) {
    /* ABOUT ME */
    #about_me-process .icon-container,
    #about_me-process .icon-label {
        min-width: 100px;
    }
}

/* SMARTPHONE OR SMALLER TABLET IN PORTRAIT MODE */
@media only screen and (max-width: 600px) {
    /* GENERAL STUFF */
    body {
        font-size: 3vw;
        line-height: 3vh;
    }

    #backtotop {
        display: none;
    }

    .title {
        margin-bottom: 0px;
    }

    .title-line {
        width: 30vw;
        height: 3px;
        background-color: var(--darkgrey);
    }

    .features {
        margin-top: 2.5vh;
    }
    
    .feature {
        text-align: center;
        line-height: 3vh;
        margin: 1vh 0px;
        width: 95vw;
        font-size: 3vw;
    }
    
    .dot {
        display: none;
    }
    
    .icon-container {
        min-width: 30vw;
        height: 18vh;
    }
    
    
    .icon-label {
        min-width: 40vw;
        font-size: 3vw;
    }
    
    .icon-icon {
        min-height: 8vw;
    }

    .button {
        width: 30vw;
        height: 4vh;
        margin-top: 5px;
        font-size: 3vw;
    }

    .main_content-band {
        height: auto;
        border-top: 1px var(--darkgrey) solid;
        border-bottom: 1px var(--darkgrey) solid;
    }

    #about_me-container,
    #dream-container {
        margin-top: 0px;
    }

    .title_line {
        height: 2px;
    }

    /*SCROLLER */
    #main_content-scroller {
        padding-top: 0px;
    }

    .main_content-band {
        height: 135vh;
        margin-top: 0px;
    }
    
    .main_content-side {
        width: 100vw;
    }

    /* GALLERY */
    .gallery-pics-arrow {
        transition: 0s;
    }

    .gallery-bigpic-container {
        width: 60vw;
        height: 90vh;
    }

    .gallery-bigpic-P {
        width: 60vw;
        height: 90vw;
    }

    .gallery-bigpic-L {
        width: 60vw;
        height: 45vw;
    }

    .loadicon-row {
        width: 30vw;
    }

    .loadicon-dot-container {
        width: 5vw;
        height: 5vw;
    }
    
    /* SPECIAL MENU FOR SMARTPHONES */
    #header {
        background-color: white;
        position: fixed;
        top: 0px;
        left: 0px;
        border-bottom: black 1px solid;
    }

    #header-logo {
        width: 40vw;
        height: 10vh;
    }

    #header-menu {
        display: none;
    }

    #header-menu_sp-icon {
        z-index: 1200;
    }

    #header-menu_sp-cover {
        position: fixed;
        top: 0px;
        left: 0px;
        
        height: 100vh;
        width: 100vw;
        
        background-color: transparent;
        transition: .5s;
    }

    #header-menu_sp {
        position: absolute;
        top: 0px;
        right: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        
        height: 100%;
        width: 10vh;
    }
    
    #header-menu_sp-list {
        position: fixed;
        top: 10vh;
        right: -100vw;
        
        height: 80vh;
        width: calc(100vw - 20vh);
        border: 1px solid var(--lightgrey);
        
        background-color: white;
        
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        
        transition: .5s;
    }
    
    .header-menu-option {
        margin-left: 0px;
        font-size: 3vh;
    }

    .header-menu-option:first-of-type,
    .header-menu-option:last-of-type {
        margin-left: 1vw;
        margin-right: 1vw;
    }
    
    #header-socialmedia {
        position: absolute;
        right: 13vh;
    }
    
    /* BACKGROUND */  
    .sp-bg {
        display: block;
    }

    .sp-bg-top {
        margin-top: 10vh;
    }

    #main_content-bg {
        display: none;
    }

    .main_content-bg-container {
        height: 66.7vw;
        margin: 0px;
    }

    .main_content-bg-container img {
        width: 102%;
        object-fit: contain;
    }

    /* ABOUT ME */
    #about_me-container {
        flex-direction: column;
    }

    #about_me-image {
        height: 45vh;
        width: 30vh;
        border: none;
        transform: none;
    }
    
    #about_me-image:hover {
        transform: none;
    }

    #about_me-right {
        padding-top: 3vh;
    }

    #dream-container,
    #help-container,
    #decoration_process-container,
    #decoration_gallery-container {
        flex-direction: column;
    }

    #about_me-container {
        height:125vh;
    }

    #about_me-signature {
        width: 45vw;
        height: 9vw;
    }

    #dream-container {
        height: 115vh;
    }

    #help-container {
        height: 130vh; 
    }

    #decoration_process-container {
        height: 115vh;
    }

    #decoration_process_2-container {
        height: 85vh;
    }

    #decoration_gallery-container {
        height: 90vh;
    }

    #decoration_gallery-left {
        display: none;
    }

    #decoration_gallery-right {
        width: 100vw !important;
    }

    /* CONTACT INFO */
    #contact-social {
        display: none;
    }
    
    #main_content-contact {
        height: 90vh;
        flex-direction: column;
    }
    
    #contact-left {
        height: 20vh;
    }

    #contact-right{
        height: 80vh;
    }
    
    #contact-left-content {
        height: 20vh;
        padding: 0px 5vh;
        justify-content: flex-start;
        align-items: flex-start;
    }

    #contact-left-content img {
        display: none;
    }
    
    .contact-line {
        margin-bottom: 2vh;
        font-size: 2.5vh;
    }

    .contact-label {
        font-size: 3.2vw;
    }
    
    /* EMAIL FORM */
    #contact-right {
        height: 70vh;
    }
    
    #contact-form {
        width: 100vw;
        margin-top: 0px;
    }

    .contact-form-line {
        width: 60vw;
        margin-bottom: 1vh;
    }
    
    .contact-form-unit {
        width: 80vw;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-label {
        width: 60vw;
        font-size: 3vw;
        padding-right: 0px;
    }
    
    .contact-form-input {
        width: 60vw;
    }

    #contact-message {
        height: 10vh;
    }
    
    #contact-thankyou {
        width: 100vw;
    }

    .contact-chk_icon {
        font-size: 3vw;
        margin-top: 3vh;
        margin-left: 4vw;
    }

    #contact-message-icon {
        margin-top: 5vh;
        padding-top: 2vh;
        height: 15vh;
    }

    #contact-submit {
        margin-top: 0px;
        padding: .5vh 2vw;
    }

    #contact-asterisk-warning {
        white-space: nowrap; 
        text-align: center;
        font-size: 3vw;
        margin-bottom: .5vh;
        transform: translateX(-4vw);
    }
    
    /* MESSENGER */
    #messenger-background {
        font-size: 2.5vh;
    }
    
    #messenger:hover ~ #messenger-background,
    #messenger-background:hover {
        width: 80vw;
    }

    #about_me-process {
        margin-top: 5vh;
    }
}

/* SMALL TABLETS IN LANDSCAPE MODE */
@media screen and (max-height: 580px) and (min-width: 600px) {
    /* ABOUT ME */
    .icon-label {
        font-size: 2.5vh;
    }
}

/* REALLY FUCKIN' SMALL SMARTPHONES */
@media screen and (max-width: 400px) and (max-height: 580px) {
    /* HEADER AND MENU */
    .header-menu-option {
        font-size: 15px;
    }

    #header-socialmedia {
        margin-right: 1.5vh;
    }

    .social-icon {
        font-size: 4vh;
        margin-right: 1vh;
    }
}