@import "./heading.css";

@font-face {
    font-family: "Forum";
    src: url("./fonts/Forum-Regular.woff") format("woff"); 
    font-weight: normal;
    font-style: normal;
}

input { 
    font-family: Forum;
}
html {
    font-family: Forum;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    overflow: auto;
}
body { 
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    margin: 0 !important;
    padding: 0;
    overflow-x: hidden;
    z-index: 0;
}

h1, h2, h3, h4 {
    font-family: Forum;
    font-weight: 100;
}
h1 { 
    font-size: 2.9em !important; 
    letter-spacing: 0.5px;
}
p, ul { 
    font-size: 1em;
    line-height: 25px;
    letter-spacing: 0.5px;
}
a {
    text-decoration: none;
}

.title.centered, p.centered {
    width: fit-content;
    text-align: center;
}
.centered {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: flex;
}
.flex.row {
    flex-flow: row;
}
.flex.col {
    flex-flow: column;
}

.section {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.content.centered {
    width: 90%;
    height: 80%;
}

#sec1 {
    justify-content: center;
}

#sec1 .content.centered {
    width: 500px;
    height: 550px;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: 2px 2px 20px lightgrey;
    z-index: 1;
}
#background {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 50%;
    background-color: green;
    z-index: 0;
}

#logo-wrapper {
    width: fit-content;
    height: fit-content;
}
#logo {
    width: 150px;
    height: 150px;
}

.green-text {
    color: green;
}
@media screen and (min-width: 1100px) {
    .mobile.centered {
        margin: 0;
    }
    #sec2 {
        height: 140%;
    }
    .content-pair.flex.row {
        height: 50%;
        flex-flow: row;
    }
    .content-pair.flex.row:nth-child(2) {
        flex-flow: row-reverse;
    }
    .content-pair.flex.row .content-image {
        width: 50%; 
        height: 100%;
    }
    .content-pair.flex.row .textbox-wrapper {
        display: flex;
        width: 50%;
        height: 100%;
        justify-content: center;
    }

    .content-pair.flex.row .textbox-wrapper .textbox {
        position: relative;
        width: 80%;
        height: fit-content;
        padding: 10%;
        text-align: left;
    }

    .footer {
        justify-content: space-between;
        flex-flow: row !important;
    }
    .footer .text-wrap {
        text-align: right !important;
    }
    #social-media-icons {
        justify-content: flex-end;
    }

    .icon-wrap.media {
        width: 50px;
        height: 50px;
        margin-left: 25px;
        border-radius: 50%;
        overflow: hidden;
    }
}