.magicCell {
    width: 800px;
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    margin-bottom: 5%;
    color: white !important;
}

.magicCellHeader {
    background-color: white;
    color:black;
}

table {
    margin: 0 auto;
    top: 50%;
    left: 50%;
}

td {
    text-align: center!important;
    color: white!important;
}

html, body {
    width: 100%;
    background: url(background.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: Sofia;
    line-height: 1.5;
    text-align: center!important;
}

.urlbutton {
    margin-top: 20px;
    width: 90%;
}

@media (orientation: landscape) {
    .imag {
        height: 400px;
    }
}

@media (orientation: portrait) {
    .imag {
        width: 80%;
    }
}

body {
    overflow: auto;
}

.imag:hover {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.imag {
    border-radius: 50%;
}

#ip5 {
    border-width: 0px;
    background: #d0ab65;
    padding: 20px;
    width: 25%;
    height: 30px;
    line-height: 30px;
}

#ip6 {
    background: white;
    width: 25%;
    height: 80px;
}

#myButton, #myButton2 {
    background-color: #18544a !important;
    width: 100%;
}

#myButton:hover, #myButton2:hover {
    background-color: #e7abb5 !important;
}

@media (orientation: landscape) {
    .big {
        font-size: 64px;
    }
    .small, html, body {
        font-size: 28px;
    }
    .medium {
        font-size: 48px;
    }
}

@media (orientation: portrait) {
    .magicCell {
        width: 100%;
        /*height: 100%;*/
    }
    .urlbutton {
        font-size: 9vw !important;
    }
    .big {
        font-size: 8vw;
    }
    .medium {
        font-size: 7vw;
    }
    html, body, table, .small {
        font-size: 6vw;
    }
    .urlbutton {
        font-size: 6vw !important;
    }
    .imag {
        width: 80%;
    }
}

.urlbutton {
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0.7;
    }
}

.accordion {
    background-color: #18544a;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 24px;
    transition: 0.4s;
}

.active, .accordion:hover {
    background-color: #e7abb5;
    color: black;
}

.accordion:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}