body {
    margin: 0px;
    padding-top: 75px;
    background-color: black;
}

.page-content {
    display: flex;
    flex-direction: row;
    min-height: calc(100vh - 75px);
    flex-wrap: nowrap;
    width: 100%;
}

.left-content {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 75px;
    left: 0;
    height: calc(100vh - 75px);
    z-index: 10;
}

.left-content img {
    height: 40vh;
    padding: 2.5vh 0;
    width: auto;
}

.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.5em;
    padding-bottom: 0;
    font-weight: bold;
    font-size: 5em;
    text-align: center;
    color: rgb(215, 215, 215);
    text-shadow: -3px -3px 10px rgb(70, 70, 70), 3px 3px 10px rgb(70, 70, 70);
}

.contract-address {
    padding-bottom: 2em;
    font-weight: bold;
    font-size: 1.25em;
    text-align: center;
    color: rgb(215, 215, 215);
}

.link-text {
    color: rgb(165, 165, 165);
    font-size: 2em;
    margin: 0.5em 0;
}

.pumpfun-logo {
    padding-top: 2em;
    text-align: center;
}

.pumpfun-logo img {
    height: 3em;
}

.pumpfun-text {
    color: rgb(134, 239, 172);
    font-size: 1em;
}

.temp-text { 
    color: white;
    font-size: 1em;
}

.right-content {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 75px;
    right: 0;
    height: calc(100vh - 75px);
    z-index: 10;
}

.right-content img {
    height: 40vh;
    padding: 2.5vh 0;
    width: auto;
}

@media only screen and (max-width: 1100px) {
    .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;
    }

    .contract-address {
        font-size: 0.75em;
    }
    
    .link-text {
        font-size: 1.7em;
    }
}