:root{
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-text-size-adjust:none;
    -webkit-tap-highlight-color:transparent;
}
@supports (font-variation-settings: normal) {
  :root { font-family: 'Inter var', sans-serif; }
}

body{
    background-color: #fff;
    opacity: 0;
    animation: load-animation 1.0s forwards;
}

@keyframes load-animation{
    0% {opacity: 0;}
    100% {opacity: 1;}
}

.download-container{
    position: relative;
    display: flex;
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    margin-bottom: 50px;
    padding-left: 10px;
}

.active-slideshow-container{
    width: 35%;
}

.install-instruction{
    width: 75%;
    text-align: center;
}

.install-instruction p{
    font-size: 18px;
    margin-top: 10px;
}

.number-one-icon{
    width: 50px;
}

.download-icon{
    width: 210px;
}

.number-two-icon{
    width: 50px;
    margin-top: 45px;
}

.warning{
    width: 500px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
    background-color: #fffcf4;
    border: 1px solid #fae29f;
    border-radius: 7px;
    font-size: 15px;
    padding: 6px;
}