@font-face {
	font-family: PP Editorial New;
    src: url('../pp-editorial-new.otf');
}

body, h1, h2, p, a {
	margin: 0;
	padding: 0;

	font-size: 15px;
	line-height: 20px;
	font-family: 'PP Editorial New';
	font-weight: 400;
	color: #B22222;
	background-color: #fafafa;

	text-decoration: none;
}

.wrapper, .me, .portfolio, .portfolio a, .footer {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.wrapper {
	margin: 0 auto;
	padding: 18px 0;

	max-width: 360px;
	gap: 37vh;
}

.portfolio {
	gap: 0px;
}

.portfolio a {
	padding: 15px 0;
	color: #B22222;
	gap: 0px;
	transition: 1.2s;
}

@media only screen and (min-width: 768px) {

	.portfolio a:hover {
		padding: 30px 0;
		opacity: .75;
		transition: 0.3s;
	}

	button:hover {
			opacity: .75;
		}

}

.portfolio p {
	text-align: center;
	hyphens: auto;
}

h1, h2 {
	font-size: 20px;
	line-height: 30px;
}


button {
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 30px 0;
  font: inherit;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  z-index: 1;
}

.toast {
	margin-bottom: 10px;
    background: #B22222;
    color: #fafafa;
    padding: 4px 12px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}