@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 4
   Case Problem 2
   
   Design Styles for the Chupacabra Music Fest
   Author: Gracie Boyette
   Date:   10/13/2025
   
   Filename: cf_effects.css

*/

/* HTML Styles */
html {
    background: url(cf_back1.png) no-repeat center center fixed;
    background-size: cover;
}


/* Body Styles */
body{
background-color: rgba(255,255,255,0.3);
}


/* Body Header Styles */
header{
background-color: rgba(51,51,51,0.5);
}

/* Aside Styles */
section aside {
    border:10px double rgba(92,42,8,0.3);
    border-radius: (30px);
}

section aside h1 {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

section#left aside {
    perspective: 450px;
    transform:rotateY(25deg);
}

section#right aside {
    perspective: 450px;
    transform:rotateY(-25deg);
}


/* Cube Styles */

div#cube {
  position: relative;
  width: 400px;
  height: 400px;
  transform-style: preserve-3d;
  perspective: 450px;
}


.cube_face {
  position: absolute;
  width: 100%;
  height: 100%;
}


.cube_front {
  transform: translateZ(-50px);
}

.cube_left {
  transform: translateX(-200px) rotateY(90deg);
}

.cube_right {
  transform: translateX(200px) rotateY(-90deg);
}

.cube_top {
  transform: translateY(-200px) rotateX(-90deg);
}

.cube_bottom {
  transform: translateY(200px) rotateX(90deg);
}