body {
    margin: 0px;
    padding-top: 75px;
    background-color: black;
}

.page-content {
    display: flex;
    flex-direction: row;
    min-height: calc(100vh - 75px);
}

.left-content {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 75px;
    left: 0;
    height: calc(100vh - 75px);
}

.left-content img {
    height: 40vh;
    padding: 2.5vh 0;
}

.middle-content {
    font-family: "Roboto", Arial;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    max-width: calc(100vw - 40rem - 10vh);
    box-sizing: border-box;
    z-index: 5;
}

.page-title {
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    font-weight: bold;
    font-size: 5em;
    text-align: center;
    color: rgb(0, 0, 0);
    text-shadow: -3px -3px 10px rgb(100, 100, 100), 3px 3px 10px rgb(100, 100, 100);
}

.ticker {
    color: rgb(215, 215, 215);
    font-weight: bold;
    font-size: 1.75em;
    text-align: center;
}

.contract-address {
    color: rgb(215, 215, 215);
    font-weight: bold;
    font-size: 1em;
    text-align: center;
    padding-bottom: 2em;
}

.transparency-text {
    color: rgb(215, 215, 215);
    font-size: 1em;
    text-align: justify;
}

.disclaimer-text {
    color: rgb(215, 215, 215);
    font-size: 1em;
    text-align: center;
}

.centered-text {
    color: rgb(90, 90, 90);
    font-weight: bold;
    font-size: 1.25em;
    text-align: center;
}

p {
    margin: 0.5em 0;
}

.main-x-logo {
    padding-top: 10em;
    text-align: center;
}

.main-x-logo img {
    height: 2em;
}

.main-x-username {
    color: rgb(215, 215, 215);
    font-size: 1em;
    text-align: center;
}

.right-content {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 75px;
    right: 0;
    height: calc(100vh - 75px);
}

.right-content img {
    height: 40vh;
    padding: 2.5vh 0;
}

@media only screen and (max-width: 1175px) {
    .left-content,
    .right-content {
        display: none;
    }

    .middle-content {
        padding: 0 2vh;
        margin: 0 2vh;
        max-width: calc(100vw - 4vh);
    }
}

@media only screen and (max-width: 520px) {
    .page-title {
        font-size: 3em;
    }

    .ticker {
        font-size: 1.5em;
    }
    
    .contract-address {
        font-size: .75em;
    }
    
    .transparency-text {
        font-size: .9em;
    }
    
    .disclaimer-text {
        font-size: .9em;
    }
    
    .centered-text {
        font-size: 1.25em;
    }
    
    p {
        margin: 0.25em 0;
    }
    
    .main-x-logo {
        padding-top: 2em;
    }
}