@font-face {
    font-family: "PoppinsRegItalic";
    src: url(./fonts/Poppins-MediumItalic.ttf);
}

@font-face {
    font-family: "BalletReg";
    src: url(./fonts/Ballet_48pt-Regular.ttf);
}

@font-face {
    font-family: "BalletThin";
    src: url(./fonts/Ballet_24pt-Regular.ttf);
}

* {
    font-family: 'PoppinsRegItalic';
}


body {
    background-color: #fefef8;
    margin: 0;
    overflow-x: hidden;
}


/* INDEX.HTML ================================================vv */
.intro {
    width: 100vw;
    height: 100vh;
    background-color: #fefef8;
    color: #6B1818;
    display: flex;
    flex-direction: column;
    /* justify-content: space-around; */
    align-items: center;
}

.intro .textDiv {
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
}

.intro .textDiv .ballet {
    font-family: "BalletThin";
    font-size: 15rem;
    line-height: 20rem;
}

.intro .textDiv h1 {
    margin: 0;
    padding-bottom: 40px;
    text-align: center;
    font-size: 8rem;
    /* line-height: 8rem; */
}

.intro .textDiv h4 {
    margin: 0;
    text-align: center;
}

.intro .textDiv h5 {
    font-size: 2rem;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}


/* arrow */
.arrow {
    text-decoration: none;
    color: #6B1818;
    margin-top: auto;
    margin: 0;
    padding-bottom: 10px;
    font-size: 2rem;
    text-align: center;
}


/* FIRST CONTAINER */

#firstContainer {
    height: 100vh;
    display:flex;
    flex-direction: column;
}

#firstContainer .arrow {
    order: 3;
}

.instructions {
    text-align: center;
    color: #6B1818;
    font-size: 2rem;
    margin: 20px 0;
    padding-top: 10px;
}


svg {
    display: block;
    margin: auto;
}

/* LAST CONTAINER */
#lastContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}


.rect:hover rect {
    fill: #2a0808;
}

.rect:hover text {
    fill: white;
}

/* smooth scroll not suported :( */
/* #container {
    overflow-y: scroll;
    scroll-behavior: smooth !important;
} */






/* COMPOSER PAGE ================================================ */

/* container id is data viz */
#container {
    display: flex;
    align-items: center;
    height: 70vh;
}

/* container class is title and buttons */
.container {
    display: flex;
    padding: 8px 8px 0 8px;
    justify-content: space-between;
    color: #6B1818;
}

.container .title h1 {
    font-family: "BalletThin";
    font-size: 4rem;
    line-height: 2rem;
}

.container .title h2 {
    text-align: center;
    line-height: 1rem;
}

.container .btn {
    background-color: transparent;
    width: 40px;
    height: 40px;
    border: 2px solid #6B1818;
    border-radius: 40px;
    font-size: 1.2rem;
}

.container .btn:hover {
    cursor: pointer;
}

.tick {
    font-size: 0.7rem;
}

.tooltip {
    background-color: #fefef8;
}


/* ? INFO */

.hide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.hide h5 {
    font-size: 2rem;
    width: 80%;
    margin: 0 auto;
}

.hide p {
    width: 70%;
    margin: 0;
    padding-top: 50px;
    font-size: 1.2rem;
    line-height: 2rem;
}

.btn:hover + .hide {
    background-color: #fefef8;
    opacity: 0.95;
    pointer-events: none;

    display: flex;
    flex-direction: column;
    
    justify-content: center;
    align-items: center; 
    text-align: center; 
}
