
@font-face {
    font-family: "TTChocolatesTrialBold";
    src: url("../fonts/TTChocolatesTrialBold.ttf") format("truetype");
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.main{
    box-sizing: border-box;
    position: relative;
    margin: auto;
    max-width: 480px;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url(../img/back.png);
    background-size: cover;
    background-position: bottom;
    flex-direction: column;
}


.main__disclamer{
    padding: 18% 5% 0 5%;
}
.poster{
    width: 80% !important;
}

.main__head{
    position: relative;
    text-transform: uppercase;
    padding: 5% 0;
    text-align: center;

}
.main__head h1{
    font-family: "TTChocolatesTrialBold";
    color: #3A6080;
    font-size: 36px;
}

model-viewer {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: -40px;
}

/* Rectangle 2 */

.button-container{
    z-index: 100;
    align-items: center;
    flex-direction: column;
    display: flex;
    width: 100%;
    position: absolute;

    /*position: fixed;*/
    bottom: 2%;
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    gap: 20px
}
#link-button {
    width: 80%;
    background: linear-gradient(146.94deg, #1FF0D8 -2.71%, #0556D0 89.26%);
    border-radius: 50px;
    /*position: absolute;*/
    /*bottom: 20px;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    color: #FFFFFF;
    padding: 18px 24px;
    border: none;
    font-size: 22px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "TTChocolatesTrialBold";
}
#ar-button {
    width: 80%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    /*position: absolute;*/
    /*bottom: 20px;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    color: #3A607F;
    padding: 18px 24px;
    border: none;
    font-size: 22px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "TTChocolatesTrialBold";
}
#ar-button:hover {
    color: #ffffff;
    background: linear-gradient(146.94deg, #1FF0D8 -2.71%, #0556D0 89.26%);
}
#link-button:hover {
    color: #3A607F;
    background: rgba(255, 255, 255, 0.5);
}
#ar-button:active {
    transform: translateX(-50%) scale(0.95);
}
#status {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    background-color: rgba(0,0,0,0.7);
    padding: 10px;
    border-radius: 5px;
    margin: 0 20px;
    z-index: 100;
}
.fallback {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #333;
}