:root {
    --light-bg-color: rgba(249, 250, 251, 1);
    --dark-bg-color: rgba(31, 41, 55, 1);

    --light-text-color: rgba(31, 41, 55, 1);
    --dark-text-color: rgba(249, 250, 251, 1);

    --light-title-color: rgb(35, 46, 33);
    --dark-title-color: rgb(107, 133, 123);

    --light-button-color: rgb(35, 46, 33);
    --dark-button-color: rgb(107, 133, 123);
    --textfont: "Montserrat";
}


body {
    background-color: var(--light-bg-color);
    color: var(--light-text-color);
    text-align: center;
    margin: 0.5rem;
}
#root {
    display: flex;
    flex-direction: column;
    max-width: 720px;
    margin: auto;
    padding: 0px 20px;

}
p {
    font-size: 1.25em;
    line-height: 1.5em;
}
h1 {
    color: var(--light-title-color);
    font-weight: 800;
}
section {
    align-items: center;
    margin-top: auto;
    font-family: var(--textfont), sans-serif;
    font-weight: 600;
}
#photo {
    flex-direction: row;
    font-family: var(--textfont), sans-serif;
    margin: 0.5rem;
}
#myphoto {
    border-radius: 50%;
    width: 8rem;
    height: 8rem;
}
#contact-section {
    margin-top: auto;
    margin: auto;
}
#contacts {
    max-width: 20rem;
    flex-direction: row;
    display: flex;
    align-items: center;
    align-self: center;
    margin: auto;
    text-align: center;
    justify-content: space-between;
}
#contacts div {
    color: #36573e;
    font-size: 3rem;
    padding: 1.5rem;
}

#contacts div a i {
    color: var(--light-button-color);
}

#corner-left-bottom {
    position: absolute;
    left: 1rem;
    bottom: 0.5rem;
}

#corner-right-bottom {
    position: absolute;
    right: 1rem;
    bottom: 0.5rem;
    display: block;
    text-indent: -9999px;
    width: 3rem;
    height: 3rem;
    background: url(../favicon.svg);
    background-size: contain;
}

#corner-under-construction {
    position: absolute;
    right: 1rem;
    bottom: 0.5rem;
    display: block;
    text-indent: -9999px;
    width: 5rem;
    height: 5rem;
    background: url(../under-construction90s-90s.gif);
    background-size: contain;
}
