@charset "utf-8";
/* CSS Document */
#portfolio {
	text-align: center;	
}
.tile { 
	display: inline-block;
	width: 28%;
	vertical-align: top;
	text-align: center;
	padding: 2%;
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease;
	border: 4px solid white;
	
}
.tile:hover { 

}

.scale-anm {
  transform: scale(1);
  font-size: 15px;
  
}


.tile img {
	text-align: center;
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 1vw;
	padding: 1vw;
  
}

.button {
    font-family:  'Alegreya Sans SC', sans-serif;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    line-height: normal;
    padding: .5rem 1rem;
    margin: 0;
	margin-bottom: 15px;
    height: auto;
    border: 1px #3d1d1c solid;
    vertical-align: middle;
    -webkit-appearance: none;
    color: #3d1d1c;
    background-color: rgba(0, 0, 0, 0);
	transition: background ease 0.5s;
}

.button:hover {
  text-decoration: none;
  background-color: #3d1d1c;
  color: white;
}

.button:focus {
  outline: none;
  border-color: var(--darken-2);
  box-shadow: 0 0 0 3px var(--darken-3);
}

::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.loaderimg {
    border: 16px solid #CCC; /* Light grey */
    border-top: 16px solid #3d1d1c; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
	margin-left: 27vw;
	
    animation: spin 1s linear infinite;
}

.loader {
	text-align: center;
	padding-top: 7vw;
	position: absolute;
	width: 67vw;
	height: 800vw;
	z-index: 7;
	background: white;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media only screen and (max-width: 50em) {
		.loader {
	width: 80vw;
	
}
		
		.tile {
			width: 80%;
			padding: 0;
}
