@font-face{
    font-family: "Fredoka One";
    src: url("../Fonts/FredokaOne-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;	
}

@font-face{
    font-family: "Baglets";
    src: url("../Fonts/baglets-webfont.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;	
}

@font-face{
    font-family: "Nintendo DS BIOS";
    src: url("../Fonts/Nintendo-DS-BIOS.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;	
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: "Nintendo DS BIOS";
    background: #038387;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
	text-decoration: none;
}

.account-container {
    width: 100%;
    max-width: 480px;
    padding: 32px;
}

.account-box {
    background: #fff;
    padding: 35px;
	grid-template-rows: repeat(2, auto);
	display: grid;
	box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.5);
}

.account-box-a {
	background: #245DDA;
	grid-template-columns: 90% 10%;
	display: grid;
	box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.5);	
}

.account-box-b {
	background: #E0430A;
	color: white;
	text-align: center;
	font-size: 200%;
}

.account-box h1 {
    margin-top: 0;
    margin-bottom: 8px;
    text-align: center;
    font-size: 32px;
}

.input-group {
    margin-bottom: 24px;
}

.input-group input {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid #000;
    background: #EEEEEE;
    color: #000;
    font-size: 24px;
	font-family: "Nintendo DS BIOS";
    outline: none;
}

.input-group input:focus {
    border-color: #fff;
	background: #fff;
}

.account-box button {
    width: 50%;
    padding: 16px;
    border: none;
    background: #038387;
    color: white;
    font-size: 24px;
	font-family: "Nintendo DS BIOS";
    font-weight: bold;
    cursor: pointer;
	transition: 0.5s;
}

.account-box button:hover {
	width: 100%;
    background: #fff;
	color: black;
	font-size: 32px;
}

.account-link {
    margin-top: 24px;
    text-align: center;
    color: #333;
	font-size: 24px;
}

.account-link a {
    color: #038387;
    text-decoration: none;
}

.account-link a:hover {
    text-decoration: underline;
}

.profile-section {
    text-align: center;

    margin-bottom: 30px;
}

.profile-picture {
    width: 160px;
    height: 160px;

    object-fit: cover;

    border: 4px solid #ffffff;

    display: block;

    margin: 0 auto 20px;
}

.profile-section h2 {
    margin: 0 0 8px;

    font-size: 24px;
}

.profile-section p {
    margin: 0;

    color: #9ca3af;
}

.profile-upload {
	margin-top: 25px;
    }

.profile-upload input[type="file"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #000;
	background: white;
	color: black;
	cursor: pointer;
	margin: auto;
        }

.profile-upload button {
    margin-top: 15px;
       	}

.logout-button {
   	width: 100%;
    padding: 16px;
    border: none;
    background: #038387;
    color: white;
    font-size: 24px;
	font-family: "Nintendo DS BIOS";
    font-weight: bold;
    cursor: pointer;
	transition: 0.5s;
	margin-top: 24px;
        }

.logout-button:hover {
	width: 200%;
    background: #fff;
	color: black;
	font-size: 32px;
        }

