body, html {
    margin: 0;
    padding: 0;
    height: 100%;
	width:100%;
    font-family: Arial, sans-serif;
	overflow:hidden;
	position:fixed;
	background-color:#1a1a1a;
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #1a1a1a;
}

.banner {
    flex: 1;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#banner-image,
#groovy-banner-image,
#tech-banner-image,
#tribal-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s;
}

#banner-image {
	opacity:1;
}

.banner img {
	height:100vh;
	width:auto;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.content {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    width: 100%;
    z-index: 1;
}

.column {
    flex: 1;
    text-align: center;
    padding: 20px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
    z-index: 2;
}

.column h2 {
	border: 2px solid white;
    display: inline-block;
    padding: 10px;
    width: 50%; 
    box-sizing: border-box;
    margin: 0;
}

/* .column:hover {
    background-color: rgba(0, 0, 0, 0.2);
} */

.contact {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

a {
    color: white;
    text-decoration: none;
}

.menu {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
}

.menu-list {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 10px 5px 10px 0;
    position: relative;
}

.menu-item {
    color: white;
    position: relative;
}

.menu-item a {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.mobile-menu-icon {
    display: none;
    cursor: pointer;
}

.pause-button {
    display: none;
    cursor: pointer;
    color: white;
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-58%);
}

@media screen and (max-width:1280px) {
	.menu {
		justify-content: center;
		right:auto;
		width:100%;
		padding:10px 0;
	}
    
    .menu-item {
        text-align: center;
    }
	
	.menu-item a {
		text-align:center;
	}
    
    .pause-button {
        left: 50%;
        transform: translate(-50%, 150%);
    }
    
}

@media screen and (max-width:900px) {
	.column h2 {
    	width: 90%; 
	}
}

@media screen and (max-width: 768px) {
    .content {
        align-items: center;
    }
	
	h2 {
		margin:0.6em;
	}

    .column {
        margin: 10px 0;
		padding:0;
    }
	
	.menu {
		padding:20px 0;
	}

    .menu-list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0; 
		gap:0;
    }

    .menu-item {
        flex: 1;
        text-align: center;
		padding:0;
    }

    .menu-item a {
        display: block;
        text-decoration: none;
        color: transparent;
		position:relative;
		height:40px;
    }

    .menu-item a::before {
        content: "";
        display: block;
        height: 40px;
    }

    .menu-item:nth-child(1) a::before {
        background-image: url('phone.svg');
        background-position: center;
		background-repeat: no-repeat;
        right: 10px;
    }

    .menu-item:nth-child(2) a::before {
        background-image: url('email.svg');
        background-position: center;
		background-repeat: no-repeat;
    }

    .menu-item:nth-child(3) a::before {
        background-image: url('instagram.svg');
        background-position: center;
		background-repeat: no-repeat;
        left: 10px;
    }

	
	.pause-button {
        transform: translate(-50%, 330%);
    }
}

@media screen and (max-width:450px) {
	.content {
		flex-direction:column;
		justify-content: space-between;
	}
	.column {
		width:100%;
		margin:10px 0;
		padding:0;
	}
	.column h2 {
    	width: 60%; 
		padding:10px;
		box-sizing:border-box;
	}
}