body, html, #matrixCanvas {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body {
    background: black;
    overflow: hidden;
	font-family: 'Exo', sans-serif;
}

.text-block {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    max-width: 800px;
    max-height: auto;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: left;
    padding: 1em;
    box-sizing: border-box;
    border-radius: 20px;
    z-index: 2;
    overflow: auto;
    box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.5);
    font-size: 1.2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.phone-link, a {
    color: #fff;
    text-decoration: none;
}

.phone-link:hover, a:hover {
    text-decoration: underline;
}

.btn-container {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  touch-action: manipulation;
}

#imageSwitch {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 10px 20px;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

#imageSwitch:hover {
  background-color: #333333;
}

#imageSwitch.active {
  background-color: #ffffff;
  color: #000000;
}

#imageSwitch.active:hover {
  background-color: #cccccc;
}

#myText {
    word-wrap: break-word;
}

#centerImg {
    position: absolute;
    top: 50%;
    left: 50%;
	max-width: 100vw;
	height: 100vh;
    transform: translate(-50%, -50%);
    z-index: 1;
	object-fit: contain;
}

#imageSwitch:hover {
    background-color: #fff;
	color: #000;
}

.copyright {
    position: fixed;
    left: 1em;
    bottom: 20px;
    color: #fff;
    font-size: 0.8em;
	z-index: 2;
}

@media only screen and (max-width: 600px) {
    .text-block {
        font-size: 1em;
    }
    
    #imageSwitch {
        font-size: 0.8em;
    }
	
	.copyright {
        font-size: 0.6em;
    }
}