.main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

iframe {
    width: 100%;
    height: 50vh;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

iframe:hover {
    transform: scale(1.02);
}

body {
    margin: 0;
    font-family: sans-serif;
    height: 100vh;
    background-color: #0d0d0d;
}

h2 {
    margin-bottom: 20px;
    font-size: 1.8em;
    color: black;
    text-align: center;
}

.mains {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
    width: 100%;
    max-width: 1800px;
    margin-left: 10px;
    margin-right: 10px;

}

.phone-frame {
    border: 5px solid #333;
    border-radius: 36px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.phone-frame:hover {
    transform: scale(1.03);
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.link-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.link {
    font-size: 1.2em;
    color: #d6249f;
    text-decoration: none;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid #d6249f;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.link:hover {
    background: linear-gradient(to right, #d6249f, #f06292);
    color: white;
    transform: scale(1.05);
}

.link:focus {
    outline: none;
    box-shadow: 0 0 0 2px #d6249f;
}

.link i {
    font-size: 1.3em;
}

.link-text {
    text-transform: uppercase;
    font-weight: bold;
}

.iframe-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 100px;
}
.iframe iframe {
    width: 33.33%;
    height: 730px;
    border: none;
}