body {
    background-color: #0B0903;
    color: #FFEDCB;
    border: solid #FFEDCB 0.5px;
}

section {
    font-family: "ivyora-display", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 4rem;
    margin-top: 0;
    text-align: center;
    border: solid #FFEDCB 0.5px;
    margin-left: 20%;
    margin-right: 20%;
    margin-bottom: 5%;
    margin-top: 1%;
}

.oscars {
    font-family: "ivyora-display", sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 4rem;
}

.image {
    width: 35px;
}


.height-10{
    height: 5px;
    overflow: hidden;
}

.height-50{
    height: 15px;
    overflow: hidden;
}

.height-100{
    height: 30px;
    overflow: hidden;
}

.height-200{
    height: 70px;
    overflow: hidden;
}

.height-300{
    height: 110px;
    overflow: hidden;
}

.height-400{
    height: 150px;
    overflow: hidden;
}

.height-500{
    height: 190px;
    overflow: hidden;
}

.height-1000{
    height: 300px;
    overflow: hidden;
}

.height-2000{
    height: 450px;
    overflow: hidden;
}

/* #container {
    display: grid;
    grid-template-columns: 25px 25px 25px 25px 25px 25px 25px 25px 25px 25px 25px 25px 25px 25px 25px 25px 25px 25px 25px 25px
    25px 25px 25px 25px 25px;
    grid-template-rows: minmax(max-content);
    gap: 10px;
    font-family: "indivisible", sans-serif;
    font-weight: 300;
    font-style: normal;
} */

#container{
    display: flex;
    align-items: flex-end;
    font-family: "indivisible", sans-serif;
    font-weight: 300;
    font-style: normal;
    margin-bottom: 1%;
    margin-left: 4%;
}
#container .year {
    padding-top: 10px;
    font-size: 100%;
}

/* .title, .director, .budget, .boxoffice, .rottentomatoes {
    display: none;
} */

.icon{
    width: 35px;
    margin-right: 1rem;
    position: relative;
}
.details{
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 150px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    line-height: 1.5;
    padding-left: 20px;
    padding-top: 20px;
    display: none;
}

.year:hover {
    cursor: pointer;
    opacity: 0.6;
}

.active{
    position: relative;
    /* z-index: 100; */
}
.active .details{
    display: block;
}

.active .image{
    width: 450px;
    height: 450px;
    padding-top: 0;
}

.active .image img{
    width: 100%;
}

@media only screen and (max-width: 1000px) {
    section {
        font-size: 40px;
        margin-left: 10%;
        margin-right: 10%;
        margin-top: 3%;
    }
    .oscars {
        font-size: 40px;
    }
    .image {
        width: 11px;
    }
    .icon {
        width: 11px;
        margin-right: 4px;
    }
    .details {
        width: 120px;
        height: 80px;
        border-radius: 5px;
        font-size: 8px;
        padding-left: 3px;
        padding-top: 3px;
    }
    #container {
        margin-bottom: 3%;
        margin-left: 1%;
    }
    #container .year {
        font-size: 5px;
        padding-top: 2px;
    }
	.active .image {
		width: 200px;
        height: 450px;
        padding-top: 0;
	}
  }


