* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: rgb(31, 31, 31);
    overflow: hidden;
    display: flex;
    align-items: start;
    justify-content: center;
    width: 100vw;
}
.frame {
    width: 1920px;
    height: 1080px;
    padding: 89px 89px;
    background-image: url(./img/metalframe.jpg);
    background-repeat: no-repeat, repeat;
    display: flex;
    flex-direction: column;
}
.header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding-top: 20px;
}
.logo {
    height: 150px;
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(5px 5px 5px #222);
}
.clock-container {
    display: flex;
    flex-direction: row;
    justify-content: end;
    gap: 5px;
    position: relative;

    width: min-content;
    padding: 0 20px;
    border-radius: 10px;

    font-family: Montserrat;
    font-size: 4.5rem;
    font-weight: 400;
    color: white;

    background-color: #2c2d2f;
    box-shadow: 0 0px 15px 2px rgb(31 152 255 / 20%),
        3px 6px 50px 10px rgba(0, 0, 0, 0.25);
}
.product {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}
.product img {
    max-height: 650px;
    max-width: 1600px;
    position: absolute;
    transition: opacity 2s ease-in-out;
}
.hidden {
    opacity: 0;
}
.visible {
    opacity: 1;
}
.calendar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    width: min-content;
    font-family: Montserrat;
    margin-right: 150px;
    position: relative;
}
.day {
    font-size: 4.5rem;
    font-weight: 400;
    grid-area: 1 / 1 / 3 / 2;
}
.month {
    font-size: 2.2rem;
    font-weight: 600;
    grid-area: 1 / 2 / 2 / 3;
    position: absolute;
    top: 10px;
    left: -3px;
    color: #757575;
}
.year {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 5px;
    grid-area: 2 / 2 / 3 / 3;
    position: absolute;
    bottom: 10px;
    color: #757575;
}
.divisor {
    font-size: 2rem;
    position: relative;
    bottom: -24px;
    color: rgb(136, 136, 136);
}
.ampm {
    font-size: 1.5rem;
    position: relative;
    bottom: -48px;
    color: rgb(136, 136, 136);
}
