/* BODY */
html, body {
  overflow-x: hidden; 
  width: 100%;
}

body {
background: url('sky.png') no-repeat center center fixed;
background-size: cover;
    font-family: "Comforter Brush";
    cursor: url('compass-cursor.png') 12 12, pointer;
}

/* HEADERS */
h1 {
    font-family: "Comforter Brush";
    font-size: 70px;
     letter-spacing:15px;
     padding-top: 20px;
    text-align: center;   
    display: block;      
    color: white;
    text-shadow: 0 0 15px skyblue, 0 0 15px skyblue;
}

h2 {
    font-family: "Comforter Brush";
    font-size: 50px;
    letter-spacing:5px;
    color: skyblue;
    text-align: center;     
    margin-bottom: 20px; 
}

h3 {
    font-family: "Amatic SC";
    font-size: 44px;
    letter-spacing:5px;
    color: navy;
    text-align: center;     
    margin: 30px auto 5px auto; 
}

/* TEXT */
p {
    font-family: "Amatic SC";
    color: #3f0fB7;
    font-size:24px;
    margin: 28px;
    line-height: 30px;
}


/* LINKS */
a {
    color: navy; 
    text-decoration: none; 
    font-weight: bold;    
    transition: color 0.3s ease; 
}

/* HOVER EFFECT */
a:hover {
    color: cyan;   
}

/* PORTALs */
.portal-container {
    display: flex;
    justify-content: center; 
    align-items: center;   
    gap: 100px;          
    margin: 40px 0;     
    width: 100%;
    flex-wrap: nowrap;      
}

.portal {
    flex: 0 1 250px;        
    text-decoration: none;
    display: block;
}

.portal img {
  display: block;
  width: 400px;           
  height: auto;          
  margin: 0 auto;
  transition: transform .5s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 15px rgba(135, 206, 235, 1));
}


.portal img:hover {
  transform: translateY(-10px) scale(1.15);
  filter: drop-shadow(0 0 50px rgba(253, 253, 150, 1));
  border-color: skyblue;
}

/* BACKGROUND MUSIC */
.music{
position:absolute;
left:-9999px;
}

/* FOOTER */
footer {
  position: absolute;
  left: 40px;
  bottom: 20px;
  width: auto;
  text-align: left;
  background-color: transparent;
}
