body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    color: white;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.content {
    font-family: Arial, sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.title {
    font-size: 127px;
    letter-spacing: 2px;
    margin: 20px 0;
}

@media only screen and (max-width: 600px) {
	  .title {
		font-size: 61px !important;
	}
	  .tagline {
		font-size: 32px !important;
	}
}

.tagline {
    font-size: 42px;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ccc;
}

.menu-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
}

