@import url("root.css");

body {
    margin-top: 100px;

}

.download-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--border-color);
    border-radius: 10px;
    margin: 20px;
}

.download-app h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.download-app p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.popup,
.popup3 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.popup-content,
.popup-content3 {
    background-color: #fefefe;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 5px;
    text-align: center;
    line-height: 1;
    transition: transform 0.3s ease, right 0.3s ease;
}

.close:hover,
.close:focus {
    color: var(--danger);
    text-decoration: none;
    cursor: pointer;
    transform: rotate(60deg);
    right: 15px;
    top: 7px;
}