@import url("https://fonts.googleapis.com/css2?family=Gabarito&display=swap");
body {
    min-height: 100vh;
    background-color: #0a0a0a;
    overflow: hidden;
    position: relative;
    font-family: "Gabarito", sans-serif;
    user-select: none;
}
.glow-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.glow-2 {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.glow-bg-1,
.glow-bg-2 {
    width: 300px;
    height: 100px;
    background-color: aqua;
    opacity: 0.4;
    border-radius: 50%;
    box-shadow: 0 0 10px 5px aqua;
    filter: blur(10rem);
}
.content-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: aliceblue;
    background: rgba(60, 60, 60, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.4px);
    -webkit-backdrop-filter: blur(4.4px);
    border: 1px solid rgba(60, 60, 60, 0.35);
    padding: 20px;
    border-radius: 10px;
    width: 500px;
    height: 300px;
    text-align: center;
}
.content-box h2 {
    font-size: 2rem;
}
.credit {
    color: #666666;
    font-size: 14px;
}
.dwn-btn {
    padding-top: 40px;
}
.download-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #313131;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.5s ease;
}
.download-button:hover {
    background-color: #444444;
}
.inf-btn {
    padding-top: 5px;
}
.info-button {
    display: inline-block;
    background: #303030;
    background: -webkit-linear-gradient(to left, #434343, #333333);
    background: linear-gradient(to left, #434343, #333333);
    border: none;
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -mo-text-fill-color: transparent;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.5s ease;
}
.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.616);
}
.popup-content {
    background: rgba(60, 60, 60, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.4px);
    -webkit-backdrop-filter: blur(4.4px);
    border: 1px solid rgba(60, 60, 60, 0.35);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    color: aliceblue;
    width: 40%;
    height: 48%;
    border-radius: 5px;
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}
.popup-content img {
    width: 500px;
    filter: drop-shadow(0 0 0.75rem rgba(68, 68, 68, 0.205));
    transition: 0.3s ease;
}
.popup-content img:hover {
    filter: drop-shadow(0 0 0.75rem rgb(68, 68, 68));
}
.popup-content a {
    display: inline-block;
    color: #8b8b8b;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    font-size: 18px;
    transition: 0.5s ease;
    transform: translateY(-15px);
    transition: 0.3s ease;
}
.popup-content a:hover {
    color: #b9b9b9;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.popup-content-dwn {
    background: rgba(60, 60, 60, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.4px);
    -webkit-backdrop-filter: blur(4.4px);
    border: 1px solid rgba(60, 60, 60, 0.35);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    color: aliceblue;
    width: 40%;
    height: 50%;
    border-radius: 5px;
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}
.popup-content-dwn p {
    transform: translateY(-33px);
}
.popup-content-dwn a {
    display: inline-block;
    color: #8b8b8b;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    font-size: 18px;
    transition: 0.5s ease;
    transform: translateY(-40px);
    transition: 0.3s ease;
}
.popup-content-dwn a:hover {
    color: #b9b9b9;
}
