div#headline_start 
{
    position: absolute;
    top: 47%;
    left: 10%;
    color: #fff;
    font-size: 52px;
    font-family: Caveat;
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75);
}

div#preview_area 
{
    display: grid;
    gap: 8px;
	margin-bottom: 32px;
	animation-name: headLineAnimation;
  	animation-duration: 4s;
	position: relative;
}

@media only screen and (max-width: 767px)
{
	div#preview_area 
	{
		grid-template-columns: 1fr 1fr;
	}	
}

@media only screen and (min-width: 768px)
{
	div#preview_area 
	{
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}	
}

.pair_of_portfolio_elements
{
  	position: relative;
  	display: inline-block; 
}

.name_portfolio 
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 21px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 1);
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    width: 125px;
}

.preview
{
    width: 100%;
}

@media only screen and (max-width: 767px)
{
	.preview
	{
		height: 140px;
	}
}

@media only screen and (min-width: 768px)
{
	.preview
	{
		height: 210px;
	}
}

img.preview_image
{
	border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 767px)
{
	#portrait 
	{
		width: 325px;
		height: 375px;
		padding: 0px 32px;
	}
}

@media only screen and (min-width: 768px)
{
	#portrait 
	{
		padding: 0px 0px 0px 64px;
	}
}

#portrait img 
{
    object-fit: cover;
    position: relative;
    width: 100%;
    height: 100%;
	border-radius: 10px;
}

.socials
{
	font-size: 32px;	
}