html {
    height: 100%;
}

body {
    background-color: #1a1a1a;
    font-family: 'Ubuntu', sans-serif;
    color: white;
    height: 100%;
}

.wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
}

.column {
	flex-direction: column;
}

.text_wrapper {
    display: flex;
    flex-direction: column;
}

.text_wrapper h1 {
    font-size: 4em;
    margin-bottom: 0px;
}

.text_wrapper h2 {
    font-size: 1.5em;
    margin-top: 4px;
    margin-bottom: 32px;
}

.button_wrapper {
    display: flex;
    flex-direction: row;
    gap: 1em;
}


.button_wrapper a {
    color: white;
    text-decoration: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: bold;
}

.alternative_button {
	background-color: transparant;
	text-decoration: underline;
}

.button {
    background-color: #7d64f2;
    display: flex;
    align-items: center;
    justify-items: center;
    column-gap: 1em;
}

.logo{
    padding: 8px !important;
}

i {
    font-size: 2em;
}

.img_wrapper {
    height: 50%;
    width: auto;
}

img {
    height: 100%;
    border-radius: 16px;
    box-shadow: 16px 16px 0px #7d64f2;
}


.photo_wrapper {
	width: 100%;
	display: grid;
	grid-auto-columns: 1fr;
	grid-column-gap: 16px;
	grid-row-gap: 16px;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: auto auto;
}

.fslightbox-source {
    box-shadow: none;	
}

.thumbnail img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
    box-shadow: none;
}

@media only screen and (max-width: 600px) {
  	.photo_wrapper {
		grid-template-columns: 1fr;
	}	
}

@media only screen and (min-width: 600px) and (max-width: 768px) {
  	.photo_wrapper {
		grid-template-columns: 1fr 1fr;
	}	
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
	.photo_wrapper {
		grid-template-columns: 1fr 1fr 1fr;
	}	
}