@font-face {
    font-family: 'Font';
    src: url('../font/bold.eot');
    src: url('../font/bold.eot?#iefix') format('embedded-opentype'),
        url('../font/bold.woff2') format('woff2'),
        url('../font/bold.woff') format('woff'),
        url('../font/bold.svg#bold') format('svg');
    font-weight: bold;
}

@font-face {
    font-family: 'Font';
    src: url('../font/bolditalic.eot');
    src: url('../font/bolditalic.eot?#iefix') format('embedded-opentype'),
        url('../font/bolditalic.woff2') format('woff2'),
        url('../font/bolditalic.woff') format('woff'),
        url('../font/bolditalic.svg#bolditalic') format('svg');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Font';
    src: url('../font/italic.eot');
    src: url('../font/italic.eot?#iefix') format('embedded-opentype'),
        url('../font/italic.woff2') format('woff2'),
        url('../font/italic.woff') format('woff'),
        url('../font/italic.svg#italic') format('svg');
    font-style: italic;
}

@font-face {
    font-family: 'Font';
	src: url('../font/regular.eot');
    src: url('../font/regular.eot?#iefix') format('embedded-opentype'),
        url('../font/regular.woff2') format('woff2'),
        url('../font/regular.woff') format('woff'),
        url('../font/regular.svg#regular') format('svg');
	}

:root {
    --scale: 1px;
}

* {
    font-family: 'Font', serif;
    color: #2c486f;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-size: 16px;
	overscroll-behavior-y: none;
}

html {
    scroll-padding-top: 11rem;
	overscroll-behavior-y: none;
}

a {
    text-decoration: none;
    color: #2c486f;
}

button {
    color: #2c486f;
    background-color: rgba(255, 255, 255, 0);
    border: none;
    cursor: pointer;
}

button:hover {
	font-style: italic;
}



.upper {
    text-transform: uppercase;
}
.small {
    font-size: 0.7em;
}
.squished {
    line-height: 0.8em;
}
.bit-squished {
    line-height: 0.9em;
}
.h-spaced {
    word-spacing: 0.4em;
}

.italic {
    font-style: italic;
}



.title-div {
    position: sticky;
    top: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 1rem 0;
    margin-bottom: 2rem;

    background-color: none;
    box-shadow: none;
}
.title {
    font-size: 4rem;
    font-weight: 120;
    width: min-content;
    text-align: center;
}



.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    z-index: 200;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 2rem 2rem 2rem;
    align-items: flex-end;

    background-color: none;
    box-shadow: none;
}
.description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}
.description .spanish {
    font-style: italic;
}
.contact {
    margin-left: 1em;
}

.contact:hover{
    font-style: italic;
}

.email {
    text-align: end;
    word-break: break-all;
}

.white-background {
    background-color: white;
    box-shadow: 0px 0rem 2rem 2rem rgba(255, 255, 255);
}


.columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;

    gap: 2rem 7rem;
	margin-bottom: 5rem;
    padding-top: 2rem;
}

.artists-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    min-height: calc(100vh - 11rem);
    padding-bottom: 80px;
}

.content p {
    text-indent: 2em;
}

.content-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: end;

    margin: 1em 0;
}
.left {
    grid-column: 1;
}
.center {
    grid-column: 2;
    text-align: center;
}
.right {
    grid-column: 3;
    text-align: right;
}

.artists-button {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: end;

    max-width: 13em;
    margin: 0 auto;
}

.artist {
    width: fit-content;
}

.tamany {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 6px;
}

.years {
    font-size: 0.7em;
    margin-left: 0.5em;
}

.content {
    margin: 0 auto;
    max-width: 80rem;

    padding: 0 10rem 10rem 10rem;

    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}

.hiding {
    opacity: 0;
    visibility: hidden;
}

.hidden {
    display: none;
}


.image {
    font-size: calc(var(--scale)/100);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    position: absolute;
    transform: translate(-50%, -50%);
}

#image-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: top left;
    
    width: var(--scale);
    height: var(--scale);

    z-index: 100;

    transition: opacity 0.3s, visibility 0.3s;
}


@media (max-width: 1200px) {

    .content {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .title {
        font-size: 2.5rem;
    }
	
	.tamany{
		font-size: 2rem;		
	}
	
    .footer {
        font-size: 0.75rem;
		padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    }
	
	.description .spanish {
		padding-top: 2px;
	}
}

@media (max-width: 800px) {

    .columns {
        grid-template-columns: 1fr;
        text-align: justify;
		margin-bottom: 2rem;
		padding-top: 0;
    }
}

@media (max-width: 710px) {
	 .years {
        display: block;
    }

    .footer {
        grid-template-columns: 1fr;
		font-size: 1rem;
		padding: 0.5rem 0.5rem 1.5rem 0.5rem;
    }

    .phone, .email {
        text-align: center;
    }
    .phone {
        grid-row: 2;
    }
    .description {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 600px) {
    .content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 600px), (max-height: 600px) {

	.title-div{
		padding: 1.7rem 0 1rem 0;
	}
	
	.title {
        font-size: 2.3rem;
    }
	
	.tamany {
		font-size: 1.25rem;
	}
	
	.content-text{
		padding-left: 1rem;
		padding-right: 1rem;
	}
}