@font-face {
    font-family: "ginto";
    src: url("fonts/ABCGintoNormal-Black.otf");
}

body{
    background-color: black;
    background-image: url("images/background.png");
    background-repeat: no-repeat;
    background-size: contain;
}
*, *::before, *::after {
	box-sizing: border-box;
}

@keyframes rotate {
	100% {
		transform: rotate(1turn);
	}
}

#profile{
    position: absolute;
    top: 5;
    right: 10%;
    color: white;
    width: auto;
    font-family: "ginto";
    background-color: black;
    border-radius: 12px;
    padding: 5px;   
}

#profile img{
    border-radius: 50%;
    float: right;
    position: absolute;
    top: 5;
    right: 3;
    cursor: pointer;
}

#profile p{
    padding-right: 70px;
    margin-top: 20px;
}

#profile #profileDropdown{
    display: none;
    background-color: black;
}

#profileDropdown #logout{
    display: flex;
    text-align: left;
    cursor: pointer;
}

#profileDropdown #logoutIcon{
    position: relative;
    bottom: -20;
}

#profileDropdown p{
    margin-left: 6;
}


#homeDiv{
    width: 25%;
    height: 75%;
    margin: auto;
    margin-top: 5%;
    text-align: center;
    position: relative;
    background-color: black;
}

#homeDiv a{
    background-color: #5865F2;
    text-decoration: none;
    font-family: "ginto";
    color: white;
    font-size: 30px;
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px;
    position: relative;
    top: 20%;
}

#homeDiv a span{
    color: white;
}

#homeDiv #bhLogo{
    position: relative;
    top: 10%;
    width: 128px;
}

#homeDiv #amboCommsLink{
    background-color: black;
    text-decoration: underline;
    color: #008000;
}

#homeDiv #fenzCommsLink{
    background-color: black;
    text-decoration: underline;
    color: #d10000;
}

#homeDiv #polCommsLink{
    background-color: black;
    text-decoration: underline;
    color: #0000ff;
}

#homeDiv #staffLink{
    background-color: black;
    text-decoration: underline;
    color: white;
}

*, *::before, *::after {
	box-sizing: border-box;
}

@keyframes rotate {
	100% {
		transform: rotate(1turn);
	}
}

.rainbow {
	position: relative;
	z-index: 0;
	/* width: 400px;
	height: 300px; */
	border-radius: 10px;
	overflow: hidden;
	padding: 1rem;
    background-color: black;
}	
.rainbow::before {
    content: '';
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: black;
    background-repeat: no-repeat;
    background-size: 50% 50%, 50% 50%;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-image: linear-gradient(#ffffff, #ffffff);
    animation: rotate 4s linear infinite;
}
	
.rainbow::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 6px;
    top: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    background: black;
    border-radius: 2.5px;
}

.rainbow.ambulance::before {
    background-image: linear-gradient(#008000, #008000); /* Change the gradient colors here */
}

.rainbow.fire::before {
    background-image: linear-gradient(#d10000, #d10000); /* Change the gradient colors here */
}

.rainbow.police::before {
    background-image: linear-gradient(#0000ff, #0000ff); /* Change the gradient colors here */
}

.rainbow.discord::before {
    background-image: linear-gradient(#5865F2, #5865F2);
}