html,body{
    height: 100%;
    width: 100%;
    margin: 0;
}
body{
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url('Resources/main back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
    gap: 20px;
}
#other_info{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#pre-coin{
    background-color: transparent;
    height: 30vh;
    width: 30vh;
    perspective: 1000px;
}

#coin{
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    
}
#pre-coin:hover #coin{
    transform: rotateY(180deg);
}
#inner, #back{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 2px solid rgba(255, 255, 255, 0.5);
}
#inner{
    box-shadow: 0 0 60px 20px rgba(255, 87, 87, 0.356);
}
#back{
    box-shadow: 0 0 60px 20px rgba(87, 196, 255, 0.356);
}
#inner img, #back img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#back{
    transform: rotateY(180deg);
}
.divider{
    border: none;
    height: 2px;
    width: 40%;
    background-color: rgba(255, 122, 122, 0.5);
    border-radius: 10px;
}

#redirect_terminal{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    height: 80%;
    width: 90%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow-y: auto;
    overflow-x: hidden;
}
#redirect_terminal::-webkit-scrollbar {
    height: 4px;
    width: 5px;
    background: rgba(124, 52, 137, 0.618);
    border-radius: 20px;
}
#redirect_terminal::-webkit-scrollbar-thumb {
    background: #f1f1f172;
    border-radius: 10px;
    background-clip: padding-box;
    border: 1px solid transparent;
}
#redirect_terminal::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}
#terminal{
    display: flex;
    height: 300px;
    width: 400px;
    border-radius: 11px;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 89, 255, 0.35);
    box-shadow: 0 0 60px 20px rgba(0, 89, 255, 0.35);
    border: 2px solid rgba(0, 0, 0, 0.577);
    flex-direction: column;
    padding: 10px;
}
.bio-text{
    color: rgb(255, 251, 0);
    text-align: center;
    margin: 0;
    -webkit-text-stroke: .2px rgb(16, 255, 20);
    font-size: 1.1rem;
}
.terminal-text{
    text-align: center;
    font-weight: bold;
    margin: 8px;
}
.redirect-button{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    width: 90%;
    height: 30px;
    border-radius: 8px;
    background-color: rgba(125, 255, 179, 0.718);
    text-decoration: none;
    color: black;
}
.redirect-button:hover{
    background-color: rgb(125, 255, 179);
    box-shadow: 0 0 10px 5px rgba(125, 255, 179, 0.718);
    color: rgb(0, 55, 255);
}