body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "-apple-system", "BlinkMacSystemFont", "Roboto", "sans-serif";
}

.grid-container {
    display: grid;
    grid-template-columns: 10vw 10vw 10vw 20vw 50vw;
    grid-template-rows: 20vh 55vh 25vh;
}

.grid-links {
    grid-column: 1 / span 4;
    grid-row: 2;
    color: #000000;
    animation-name: yellowtext;
    animation-duration: 3s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.grid-rechts {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d51846;
    grid-column: 5;
    grid-row: 1 / span 3;
}

.phone {
    margin: 16px;
    width: 367px;
    height: 699px;
    background-size: 367px 699px;
    cursor: pointer;
}

.logo {
    width: 40px;
    margin-top: 3%;
    margin-left: 10%;
    cursor: pointer;
}

.logo:hover {
    filter: opacity(0%);
}

h1 {
    font-size: 28px;
    line-height: 34px;
    max-width: 360px;
    margin-left: 10%;
    cursor: pointer;
    animation-name: fliph1;
    animation-duration: 3s;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}

p {
    font-size: 16px;
    line-height: 24px;
    margin-left: 10%;
    margin-right: 20%;
    cursor: pointer;
}

.row {
    margin-left: 9%;
}

.download {
    width: 140px;
    height: auto;
    cursor: text;
}

.sipnews {
    color: #000000;
    font-size: 14px;
    margin-left: 10%;
    margin-right: 10%;
    cursor: pointer;
    animation-name: greentext;
    animation-duration: 3s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

/* Login Popup */
.form-popup {
    display: none;
    position: absolute;
    top: 30%;
    left: 40%;
    right: 50%;
    bottom: 40%;
    z-index: 9;
}

.form-container {
    border-radius: 5px;
    min-width: 300px;
    padding: 10px;
    background-color: #ffffff;
    border: 1px solid #d51846;
}

.form-container h1 {
    margin: 0;
    padding: 0;
}

.form-container .btn {
    background-color: #d51846;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    opacity: 0.8;
}

input {
    width: 100%;
    padding: 15px 0px;
    margin: 5px 0 22px 0;
    border: none;
}

label {
    font-weight: bold;
}

@keyframes fliph1 {
    to {
        -moz-transform: scale(1, -1);
        -webkit-transform: scale(1, -1);
        -o-transform: scale(1, -1);
        -ms-transform: scale(1, -1);
        transform: scale(1, -1);
    }
}

@keyframes yellowtext {
    100% {
        color: #FFFF00;
    }
}

@keyframes greentext {
    100% {
        color: #CCFFCC;
    }
}

@media only screen and (max-width: 600px) {
    .form-popup {
        display: none;
        position: absolute;
        top: 30%;
        left: 10%;
        right: 10%;
        bottom: 30%;
        z-index: 9;
    }

    .phone {
        width: 150px;
        height: auto;
    }

    .grid-container {
        display: grid;
        grid-template-columns: 10vw 10vw 10vw 20vw 50vw;
        grid-template-rows: 3vh 89vh 8vh;
    }

    .download {
        width: 140px;
        height: auto;
    }
}