html, body {
  margin: 0;
  padding: 0;
 
}  

body1 {
   
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 100%;
    background-color: black;
    color: white;
    background-image: url('supernova.jpg');
    
    background-position: center;
    background-size: cover;
  
    
}

h1 {
    font-size: 3vw;
}
h4 {
  font-size: 3vw;
}


.tcontainer {
  
  display: flex;
    justify-content: center; /* Centers horizontally */
   
  
  
}

.top a {
    display: flex;
    align-items: stretch;
    justify-content: center;
    text-align: center;
   
}

.top {
    display: flex;
    font-size: 70%; 
    border-style: ridge;
    border-width: 0.5vw;
    border-color: grey;
    flex: 1 1 600vw;  /* flex-grow: 1, flex-shrink: 1, flex-basis: 300px */
    background-color: black; 
    justify-content:space-evenly;  
    text-align: match-parent;
    max-width: 45%;
    max-height: 55%;
   line-height: 3%;
}
   
.middleleft{
  
  display: flex;
  justify-content: flex-start;
  font-size:100%;
  flex: 0 1 12vw; 
  border-style: ridge;
  border-width: 0.5vw;
  border-color: grey;
  background-color: black; 
  max-width: 45%; 
  align-self:center;
  height: 20vw;
  overflow: auto;
  text-align: left;
  flex-grow:0;
  
   
  
  
  
  
  
}
   
    
 
    
   
    
   


.bottom { 
  display: flex;
    font-size: 80%;
    border-style: ridge;
    border-color: black;
    border-width: 0.5vw;
    background-color: black;
    margin-top: auto; /* Pushes the .bottom to the bottom */
    align-items: center;
    max-height: 2vw;
      
 
}

.contact-page {
  background-image: url('bluesky.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  justify-content: center;  /* Horizontal center */
  align-items: center;      /* Vertical center */
  text-align: center;       
  color: black;
  height: 100%;
  margin: 0;
  padding: 0;
   display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 100%;
    

}


a:link {
    color: blue;
}


a:visited {
    color: blue;
}


a:hover {
    color: hotpink;
}


a:active {
    color: magenta;
}