@font-face {
  font-family: Manga; 
  src: url(/fonts/manga.ttf);
}

body {
    font-family: Manga; 
    margin: 0;
    padding: 0;
    /*background: linear-gradient(90deg, rgba(1, 1, 1, 1), rgba(0, 31, 63, 0.9), rgba(0, 31, 63, 0.8), rgba(51, 153, 255, 1), rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.9), rgba(1, 1, 1, 1));*/
	background: radial-gradient(circle, rgba(51,153,255,1) 0%, rgba(255,165,35,1) 100%);
    color: #ffffff;
    overflow-x: hidden;
}

main {
	min-height: 100vh;
}

a {
	color: #3399ff;
}


header {
    text-align: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
	color: #3399ff;
}

p {
    font-size: 1.2em;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px auto;
    max-width: 1200px;
}

.button {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: 10px;
    overflow: hidden;
    width: calc(30% - 40px);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    backdrop-filter: blur(5px);
}

.button img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.button span {
    display: block;
    padding: 10px;
    font-size: 1.2em;
	color: #ffffff;
}

.button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

.button:hover img {
    transform: scale(1.05);
}

.button:hover span {
    color: #ffffff;
	text-shadow: rgba(0, 51, 102, 0.7) 5px 0px 5px, rgba(0, 51, 102, 0.7) 0px 5px 5px, rgba(0, 51, 102, 0.7) 0px -5px 5px, rgba(0, 51, 102, 0.7) -5px 0px 5px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
    bottom: 0;
    width: 100%;
}