@font-face {
    font-family: "DrawingSet";
    url("font/Super Brush.otf") format("otf");
}

@font-face {    
    font-family: "ExtraLight";
    url("font/extralight.otf") format("otf");
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto Mono', monospace;
    background-color: #F8F8F6;
}

#content {
    display: flex;
    flex-direction: row;
}

h2 {
    font-family: 'DrawingSet', cursive;
}

#buttons {
    margin: 2% 0 0 0;
    width: 80%;
    height: 10vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#buttons div a {
    text-decoration: none;
    color: black;
}

#buttons div {
    border-radius: 10px;
    display: inline-block;
    padding: 0.5% 2%;
    font-size: 1vw;
    border: 1px solid black;
    cursor: auto;
    background-color: white;
    color: black;
}

#buttons div:hover {
    background-color: black;
    color: white;
    cursor: pointer;
}

#projects {
    width: 100%;
    height: 100vh;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

#projects .title {
    height: 15vh;
    margin: 2% 0 1% 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

#projects .title h2 {
    font-size: 2vw;
    margin: 0 0 0.5% 0;
}

#projects .title hr {
    width: 70%;
    height: 2px;
    background-color: black;
}

#projects iframe {
    width: 50%;
    aspect-ratio: 16 / 9;
    height: auto;
    margin: 2% 0;
}

#steps-list {
    width: 80%;
    height: auto;
    margin: 0 0 0 1%;
    padding: 0 0 3% 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#steps-list .bar {
    width: 90%;
    height: 10vh;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

#steps-list .bar:hover {
    cursor: pointer;
}

#steps-list .bar  p {
    font-size: 1.5vw;
    font-weight: bold;
}

.bar .arrow {
    transform: rotate(90deg);
    display: inline-block;
}

#steps-list .step-content {
    width: 98%;
    height: auto;
    background-color: white;

    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    margin: 0 1%;
}

.step-content video {
    width: 90%;
    height: 50%;
    object-fit: cover;
    margin: 2% 0 0 5%;
}

.step-content p {
    text-align: center;
    margin: 2% 0 3% 0;
    padding: 0 1% 2% 1%;
}

.step-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.step.active .step-content {
    max-height: 1000px;
}

#about {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 3% 0;
    width: 80%;
}
