body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0;
    padding: 0;
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.text-container {
    display: grid;
    height: 100vh;
    place-items: center;
}

.text-container>div>p {
    max-width: 500px;
}

.subscribe-newsletter {
    margin-top: 100px;
}

.subscribe-newsletter>a {
    color: grey;
}

.phone-container {
    display: grid;
    height: 100vh;
    width: 100%;
    place-self: center;
    background-color: #c52146;
    place-items: center;
}

.phone-container>img {
    width: 50%;
    height: auto;
}

/*
    start of insanity
  */

/*
      1. Ads
      2. popup
      3. cursor trails
      4. warning screen
  */

/* 1. Ads */
.list-ads {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0px;
    left: 10px;
}

.add {
    background-color: #fff;
    border: black 1px solid;
    border-radius: 10px;
    width: 360px;
    height: 100px;
    margin-top: 10px;
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
}

.add>img {
    max-width: auto;
    max-height: 100px;
}

.ad-image {
    border-radius: 8px 0px 0px 8px;
    border-right: black 1px solid;
    max-width: 80px;
    height: 100%;
}

.close-icon {
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-align: center;
    font-size: 40px;
    border: none;
    background-color: transparent;
}

/* 2. popup */

.fillscreen {
    width: 100%;
    height: 100vh;
    background-color: rgba(72, 72, 72, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    z-index: 100;
    place-items: center;
}

.popup {
    z-index: 100;
    width: 80%;
    height: 80%;
    background-color: rgb(255, 255, 255);
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    font-family: 'vivaldi';
    text-align: center;
    position: relative;
    font-size: 30px;
    place-items: center;
}


.popup>div:last-of-type>.close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 80px;
    height: auto;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
}

.close-button {
    border-radius: 0% !important;
    background-color: rgba(255, 0, 60, 0.58) !important;
    font-size: 20px !important;
    width: 100px !important;
    display: none;
}

/* cursor trails */
/* body {
    cursor: none !important;
  } */
.cursor-popup {
    position: absolute;
    bottom: 10px;
    right: 30%;
    pointer-events: none;
    /* Allows mouse interaction to pass through */
    width: 500px;
    height: 100px;
    background-color: white;
    border: 3px solid black;
    border-radius: 10px;
    z-index: 9999;
    /* Ensure it's on top of other elements */
    font-size: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    place-items: center;
    pointer-events: none;
}

.cursor-popup>p {
    margin-left: 10px;
}

.cursor-popup>.cursor-button {
    width: 90%;
    height: 50px;
    border-radius: 10px;
    background-color: #c52147bd;
    transition: background-color 0.3s, transform 0.3s;
    pointer-events: auto;
}

.cursor-popup>.cursor-button:hover {
    background-color: #c52146;
    transform: scale(1.1);
}

.trail {
    position: absolute;
    pointer-events: none;
    /* Allows mouse interaction to pass through */
    background-color: red;
    border-radius: 50%;
    z-index: 9999;
    /* Ensure it's on top of other elements */
}

/* warning screen */
div.warningScreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(44, 43, 43);
    text-align: center;
    z-index: 100;
}

div.warningScreen>h1 {
    font-size: 50px;
    color: rgb(204, 203, 203);
    margin-top: 100px;
}
div.buttons {
    display: grid;
    place-content: center;
    height: 200px;
}
div.warningScreen > div.buttons > button {
    margin-top: 50px;
    width: 200px;
    height: 50px;
    border-radius: 10px;
    background-color: rgb(204, 203, 203);
    border: none;
    font-size: 20px;
    cursor: pointer;
}

@media screen and (max-width: 1200px) {
    body {
        padding: 2rem;
    }

    .text-container {
        grid-column: 1 / 3;
    }

    .phone-container {
        display: none;
    }

    .container {
        text-align: center;
    }

}

iframe {
    position: absolute;
    border: none;
    width: 400px;
    height: 300px;
    pointer-events: none;
}