@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

html{
    background-color: #1a1a1a;
    color: gainsboro;
    font-family: 'Roboto', sans-serif;;
}

body{
    overflow-x: hidden;
    margin: 0px;
    background-color: transparent;
}

.cover-img{
    background-image: url("./media/hero-caps-v2.png");
    background-position: center;
    background-size: cover;
    object-fit: cover;
    object-position: center;
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
    filter: blur(10px);
    z-index: -1;
}
.logo{
    display: flex;
}
.logo img{
    z-index: 99;
    position: relative;
    width: 80%;
    max-width: 600px;
    margin: auto;
}

.main-centered{
    width: 100vw;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-centered p{
    width: 50%;
    min-width: 300px;
    text-align: center;
}

.title{
    width: fit-content;
    font-size: 2.4em;
    margin: 20px auto 0px auto;
}
.subtitle{
    color: rgb(168, 168, 168);
    font-size: 28px;
    margin-bottom: 30px;
}

.download-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0px;
}

.download-section label
{
    margin: 10px auto;
    font-size: 25px;
}

button.rounded-btn{
    background-color: #8a1212d0;
    height: 50px;
    border-radius: 5px;
    color: wheat;
    width: 300px;
    border: 4px solid  #8a122c;
    font-size: 24px;
    transition: 0.5s all;
    cursor: pointer;
}
button.rounded-btn:hover{
    background-color: #ff0037;
    border: 4px solid rgb(255, 65, 65);
}

.info-box{
    border-radius: 10px;
   
    background-color: rgba(0,0,0,0.5);
    padding: 20px;
    display: flex;
    align-items: center;
}

.info-box a{
    color: rgb(167, 167, 167);
    margin-left: 10px;
    transition: 0.1s all;
}
.info-box a:hover{
    color: antiquewhite;
}

.footer{
    background-color: black;
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 20vh;
    max-height: 500px;
}

.options{
    margin-top: 40px;
    display: flex;
    justify-content: space-evenly;
}

.footer-item{
    cursor: pointer;
    font-size: 26px;
    color: gainsboro;
    text-decoration: none;
    transition: 0.1s all;
}

.footer-item:hover{
    color: rgb(255, 7, 19);
}