* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
    text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
}

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url("img/bg.gif");
    background-position: center;
    background-size: 1700px;
    background-repeat: no-repeat;
    background-color: #000;
}

.home-container {
    text-align: center;
    background: #fff;
    border-radius: 50%; /* Keeps the box round */
    width: 500px;
    height: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative; /* For positioning inner elements */
    background-image: url('img/zy.png');
    background-size: cover;
    background-color: #00000000
}

.enter {
    font-size: 2rem;
    position: absolute;
    top: 92%;
    left: 50%;
    transform: translate(-50%, -50%);
	height: 100px;
    width: 200px; /* If it breaks somehow put back to 100% */
    z-index: 1;
	padding: 25px 0;
}

a.enter:hover {
    color: #00aa00 !important; /* Green hover color */
}

.enter_bottom_text {
	font-size: 22px; 
	position: relative; 
	top: 98%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
	pointer-events: none;
}

.icon-links {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px; /* Increased width for more space */
    height: 500px; /* Increased height for more space */
    transform: translate(-50%, -50%);
}

.icon-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    position: absolute;
    transition: transform 0.2s ease;
}

.icon-links i {
    font-size: 2.5rem;
    color: #4CAF50;
    display: block;
    margin-bottom: 5px;
}

.icon-links span {
    display: block;
    font-size: 1rem;
}

.icon-links a img,
.icon-links a span {
    transition: transform 0.2s ease;
}

.icon-links a:hover img {
    transform: scale(1.15);
}

.icon-links a:hover span {
    transform: scale(1.15) translateY(6px);
}

/* Positioning icons outside of the circle in a circular layout */
.icon-links a:nth-child(1) {
    top: -5%; /* Moved further up */
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
}

.icon-links a:nth-child(2) {
    top: 10%;
    left: 100%; /* Moved further out */
    transform: translate(-50%, -50%);
}

.icon-links a:nth-child(3) {
    top: 50%;
    left: 125%; /* Moved further out to the right */
    transform: translate(-100%, -50%);
}

.icon-links a:nth-child(4) {
    top: 90%;
    left: 100%; /* Moved further out */
    transform: translate(-50%, -50%);
}

.icon-links a:nth-child(5) {
    top: 105%; /* Moved further down */
    left: 50%;
    transform: translate(-50%, 0%);
}

.icon-links a:nth-child(6) {
    top: 90%;
    left: 0%; /* Moved further out */
    transform: translate(-50%, -50%);
}

.icon-links a:nth-child(7) {
    top: 50%;
    left: -25%; /* Moved further out to the left */
    transform: translate(0%, -50%);
}

.icon-links a:nth-child(8) {
    top: 10%;
    left: 0%; /* Moved further out */
    transform: translate(-50%, -50%);
}