@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Fira+Sans:wght@100;200;300;400;600;700;800;900&display=swap');

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: white;
    color: black;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
}

p {

}

h1 {
    font-size: 2.8em;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

h2 {
    font-size: 2em;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

h3 {

}

a {

}

a:hover {

}

.basic-content-wrapper {
    display: block;
    text-align: center;
}

.basic-content {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.basic-content-title {
    position:fixed;
    display: inline-block;
    top: 10px;    
    left: 50%;
    transform: translateX(-50%);
}

.basic-content-image {
    position:fixed;
    display: inline-block;
    top: 150px; 
    left: 5vw;
    width: 40vw;
    text-align: center;
}

.basic-content-image img {
    display: inline-block;
    width: 40vw;
    height: auto;
}

.basic-content-text-wrapper {
    position:fixed;
    display: inline-block;
    overflow-y: scroll;
    height: 70vh;
    top: 150px; 
    left: 50vw;
    text-align: left;
    width: 40vw;
}

.basic-content-text {
    text-align: justify;
    font-size: 1.2em;
    line-height: 1.6em;
    padding-right: 20px;
}

.footer {

}

/*****************************************************/

.wrapper {
    display: block;
    height: 100%;
    width: 100%;
    background-color: black;
}

.table {
    display: table;   
    height: 100%;
    width: 100%; 
    text-align: center;
}

.table-cell {
    display: table-cell;   
    height: 50%;
    width: 50%; 
    vertical-align: middle;
}

.center {
    text-align: center !important;
}

.no-margin {
    margin:0 !important;
}

.no-padding {
    padding:0 !important;
}


@media only screen and (max-width: 1000px) {
    .basic-content {
        width: 100vw;
        text-align: center;
    }
    
    .basic-content-title {
        transform: inherit;
    }

    .basic-content-title,
    .basic-content-image-wrapper,
    .basic-content-image,
    .basic-content-text-wrapper,
    .basic-content-text {
        position: unset;
        display: inline-block;
        width: 90vw;
    }

    .basic-content-text-wrapper,
    .basic-content-text {
        overflow-y: unset;
        padding: 0;
        width: 85vw;
    }

    .basic-content-image img {
        width: 100%;
        height: auto;
    }


}