@import url('https://fonts.googleapis.com/css2?family=Aoboshi+One&display=swap');

body {
	background-color: #111313;
	color: white;
	margin: 0px;
	height: 100vh;
	overflow-x: hidden;
	overflow-y: hidden;
}

p {
	margin: 0px;
}

a {
	text-decoration: line;
	text-decoration-color: white;
	color: white;
}

span {
	color: #00d9ff;
}

button:hover {
	cursor: pointer;
}

.content-hider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0);
	z-index: -1;
	transition: all 400ms;
}

.success {
    display: flex;
    background-color: #1e1e1e;
    color:white;
    padding:10px;
    padding-left:15px;
    padding-right:15px;
    border-radius:5px;
    position:absolute;
    top:0;
    left:50%;
    transform:translate(-50%, -100%);
    font-family: "Roboto", sans-serif;
    transition: all 250ms;
}

.success p {
    margin-left:10px;
}

.success span {
    color:#34a853;
}

.menu {
	background-color: transparent;
	display: flex;
	flex-direction: column;
	height: 100%;
    min-width:305px;
	width: 20vw;
	max-width: 500px;
	font-size: 30px;
	position: absolute;
	font-family: "Aoboshi One", sans-serif;
	z-index: -5;
	padding: 2%;
	transform: translateX(-700px);
	transition: all 500ms;
}

.menu button {
	background-color: transparent;
	border: none;
	font-size: 30px;
	color: white;
	text-align: right;
}

.menu button:hover {
	color: #909090;
}

.menu a {
	color: white;
	text-decoration: none;
	margin: 10px;
}

.content {
	width: 100%;
	height: 100%;
	text-align: center;

	font-family: "Roboto", sans-serif;
}

.menu-title-container {
	text-align: left;
	padding: 20px;
	padding-left: 40px;
	padding-bottom: 0px;
	display: flex;
	justify-content: left;
	align-items: center;
    font-family: "Aoboshi One", sans-serif;
}

.menu-title-container p {
    font-size:37px;
}

.menu-title-container button {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 3em;
	color: white;
	background-color: transparent;
	border: none;
	outline: none;
	margin-right: 20px;
	height: 100%;
	padding: 0px;
	padding-bottom: 5px;
}

.menu-title-container button:hover {
	color: #909090;
}

.menu-title-container span {
	color: #00d9ff;
}
@media screen and (max-width: 1100px) {
	body {
		overflow-y: auto;
	}

	.menu {
		min-width: 100px;
		width: calc(100vw - 20%);
		height: auto;
		max-width: 100vw;
		max-height: 500px;
		display: flex;
		padding: 10%;
		font-size: 50px;
		transform: translate(0px, -600px);
	}

	.menu button {
		font-size: 50px;
	}

	.menu-title-container {
		font-size: 40px;
		justify-content: center;
	}

    .menu-title-container p {
        font-size: 60px;
    }

    h1 {
        font-size:50px;
    }

    h2 {font-size:40px}
}
