@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
:root {
    --primary-color: #1c1c1c;
    --white: #fff;
    --box-shadow:0 0.5rem 1rem rgba(0,0,0,0.1);
    --gray: #808080;
    --light-gray: #eee;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgb(17, 17, 17);
}
#popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: #fff;
    width: 420px;
    height: 800px;
    padding: 80px 50px 50px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    overflow: hidden;
overflow-y: scroll;
    transition: 0.5s;
}
#popup .active {
    visibility: visible;
    top: 50%;
}
#popup .content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#popup .content img {
max-width: 100%px;
}
#popup .content h2 {
    font-size:24px;
    font-weight: 500;
    color: rgb(22, 22, 22);
    margin: 20px  10px;
}
#popup .content p {
    text-align: justify;
    font-size: 14px;
    color: rgb(22, 22, 22);
}

.btn {
    position: relative;
    padding: 10px 20px;
    margin-top: 15px;
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 12px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.5s;
}
.btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}
.close {
    position: absolute;
    top: 60px;
    right: 20px;
    cursor: pointer;
}
.close img {
    width:40%;
}

