@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;    
    font-size: 100%;
    overscroll-behavior: none;
}

body{
    background-color: black;
    color: whitesmoke;
    font-family: Inter;
}

main{
    background-color: #232323;
    height: 100vh;
    min-height: 720px;
}

.divider {
    height: 1.25px;
    width: 100%;
    background-color: rgb(60, 60, 60);
    margin-top: 12px; 
    margin-bottom: 12px;
}

.title{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.title .smallTitle{
    font-size: 1.25rem;
    color: #d4d4d4;
    font-weight: 400;
    letter-spacing: 0.25px;
    text-align: center;
}
.title .mainTitle{
    font-size: 1.4rem;
    color: #f5f5f5;
    font-weight: 500;
    text-align: center;
}

em.mainTitle{
    font-weight: 700;
    font-style: normal;
}

.normalText{
    color: #c5c5c5;
    font-weight: 250;
    letter-spacing: 0.5px;
}

.storeButtons{
    width: calc(270px / 1.5);
    height: calc(80px / 1.5);
    margin-top: 12px;
    margin-bottom: 24px;
}

div.autoframe {
    max-width: 85%;
    min-width: 25%;
    width: 600px;
    display: flex;
    flex-direction: column;
}

div.topContainer{
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 16px;
}

div.bottomContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

div.lowerButtons{
    display: flex;
    justify-content: space-between;
}

a.button{
    color: #808080;
    text-decoration-style: dotted;
}

.fourOfour{
    width: 70%;
    margin-bottom: 8%;

    user-select: none; 
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none; 
    pointer-events: none; 
}

.logo {
    width: 60%;
    margin-bottom: 8%;
    /* height: 1080px; */

    user-select: none; 
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none; 
    pointer-events: none; 
}
a .logo{
    width: 100%;
}

.autocenter {
    display: flex;
    align-items: center ;
    justify-content: center;
}

footer{
    display: flex;
    align-content: center;
    justify-content: center;
    height: 60px;
    background-color: black;
    font-size: 0.8rem;
    color: #808080;
    padding-inline: 16px 16px;
    padding: 0;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    footer{
        font-size: 0.5rem;
    }
    .normalText{
        text-align: center;
    }
    .title .smallTitle{
        font-size: 1.2rem;
    }
    .title .mainTitle{
        font-size: 1.35rem;
    }

    main{
        min-height: 600px;
    }
}