.age-gate {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999999;
    font-family: var(--font-raleway);
}

.age-gate__modal {
    background-color: #fff;
    width: 40%;
    padding: 24px;
}

.age-gate__modal h2 {
    color: #AF8554;
    font-size: 54px;
    line-height: 60px;
    font-family: var(--font-garamond);
    text-transform: uppercase;
}

.age-gate__input {
    width: 100%;
    border: 0;
    font-size: 18px;
    border-bottom: 1px solid var(--brown);
    text-align: center;
    outline: none;
}

.age-gate__notice,
.age-gate__notice a {
    font-size: 14px;

}

.age-gate__notice a {
    color: var(--brown);
}

.age-gate__notice a {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .age-gate__modal {
        width: 90%;
    }
}

@media screen and (max-width: 400px) {
	.age-gate__modal {
		padding: 12px;
	}
	.age-gate__modal h2 {
		font-size: 32px;
	}
	.age-gate__notice--terms span {
		display: none;
	}
	
	.age-gate__notice--terms a {
		display: block;
		text-align: center;
		margin-bottom: 8px;
	}

}