: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{
    margin-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
}

.active-slideshow-container{
    width: 100%;
    margin-bottom: 50px;
    order: 2;
}

.install-instruction{
    text-align: center;
    order: 1;
}

.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-icon{
    width: 50px;
}

.download-net-runtime{
    text-decoration: none;
    color: #2e7cc5;
}