* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    font-size: 18px;
    font-family: 'Noto Sans', sans-serif;
    color: white;
}

body {
    background-color: black;
}

.parent-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center; 
    min-height: 100vh;
}

.cportrait {
    width: 25vw;
    height: 80vh;
    text-align: center;
}

.port {
    width: 25vw;
    height: 80vh;
    border: 2px solid grey;
}

.tbox {
    width: 50vw;
    min-height: 70vh;
    max-width: 50vw;
    background-color: rgba(236, 227, 227, 0.199);
    padding: 1em;
    border: 2px solid grey;
    line-height: 2;
    text-align: center;
}

.title {
    font-size: 30px;
}

.write {
    display: block;
    text-align: center; 

}

.summary {
    margin-top: 1em;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-height: 50vh;
}

.filler {
    padding-left: 1.5rem;
    font-size: 30px;
}

.fill {
    display: flex;
    min-height: 35vh;
    background-color: rgba(236, 227, 227, 0.199);
    line-height: 2;
    border: 2px solid grey;
    margin-left: 1.5rem;
    margin-right: 1.5em;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    /* min-height: 400px; */
}

/*formating for footer*/
footer 
	{
		min-height: 3rem;
		border: 1px solid grey; 
		background-color: rgba(236, 227, 227, 0.199);
		padding: 12px;
		text-align: left;
		color: black;
        width: 99vw;
	}
	
.left
{
	padding: 0 6px 0 0;
	
}
footer a:hover {color: #ffffff;} 
footer a:visited {color: #ffffff;} 
footer a:active {color: #ffffff;}
footer a:link {color: #ffffff;} 


@media only screen and (max-width: 1500px) {
    .parent-container {
        flex-direction: column;
    }

    .cportrait {
        width: 1000px;
        height: 575px;
    }

    .port {
        height: 500px;
        width: 1000px;
        margin-top: 50px;
    }

    .tbox {
        max-width: unset;
        width: 90%;
        margin-top: 100px;
    }
}

@media only screen and (max-width: 1100px) {
    .cportrait {
        width: 750px;
    }

    .port {
        width: 750px;
    }
}

@media only screen and (max-width: 800px) {
    .cportrait {
        width: 500px;
    }

    .port {
        width: 500px;
    }
}

@media only screen and (max-width: 550px) {
    .cportrait {
        width: 350px;
    }

    .port {
        width: 300px;
    }

    .tbox {
        max-width: unset;
        width: 90%;
    }
}

/* @media only screen and (max-width: 570px) {
    * {
        font-size: 16px;
    }

    .fill > div {
        font-size: 12px;
    }
} */

@media only screen and (max-width: 400px) {
    .tbox {
        padding: 0.5em;
    }

    .fill {
        padding: 0.5em;
    }
}
@media only screen and (max-width: 350px) {
    .cportrait {
        width: 250px;
    }

    .port {
        width: 250px;
    }

    .summary {
        margin-top: unset;
    }

    .fill {
        min-height: 400px;
        margin-bottom: 50px;
    }

    .tbox {
        margin-top : 50px;
        min-height: 850px;
        margin-bottom: 50px;
    }

    .filler {
        margin: 10px;
    }
}
