:root {
    --color-case: #cfcfcf;
    --color-screen: #1c1c1c;
    --color-stand: #a8a8a8;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100dvh;
    background-color: #7da2b3;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    font-family: sans-serif;
}

.monitor {
    background: var(--color-case);
    padding: 20px;
    border-radius: 8px;
    box-shadow: inset 0 0 20px #e0e0e0, 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dvd_area {
    height: 400px;
    width: 600px;
    background-color: var(--color-screen);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 10px solid #333;
    border-radius: 4px;
    box-shadow: inset 0 0 25px #000;
}

.dvd {
    position: absolute;
    height: 50px;
    width: 100px;
    mask: url("dvd_logo.png");
    -webkit-mask: url("dvd_logo.png");
    background-repeat: no-repeat;
    background-size: 75px;
    background-position: center;
}

.stand {
    width: 120px;
    height: 20px;
    background: var(--color-stand);
    margin-top: 15px;
    border-radius: 4px;
    box-shadow: inset 0 0 10px #8a8a8a;
}

.info-2{
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: center;
}

.info-2 img{
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.info-2 img:hover{
    transform: scale(1.15);
}

@media (max-width: 650px) {
  .dvd_area {
    height: 200px;
    width: 300px;
  }
}