@media (min-width: 800px) {

    .left {
        width: 25%;
        height: 80px;
        display: grid;
    }

    .center {
        width: 40%;
        height: 80px;
        display: grid;
        padding-left: 15%;
        padding-right: 15%;
        white-space: nowrap;
        justify-content: center;
    }

    .right {
        width: 25%;
        height: 80px;
        display: grid;
        gap: 10%;
    }


    .header {
        width: 100%;
        height: 80px;
        display: flex;
        flex-wrap: nowrap;
    }

    .logo {
        align-self: center;
        margin-left: 10px;
    }

    .logo-img {
        box-shadow: 0px 0px 10px 2px #664196;
    }

    .title {
        align-self: center;
        font-size: 300%;
        font-weight: bold;
        background: linear-gradient(90deg, #3fdadd, #176ece, #ae17ce);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: center;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .icon-box {
        justify-self: end;
        width: 20%;
        height: 50%;
        margin: 35px;
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 20px;
    }

    .icon-button {
        padding: 2px;
        height: 32px;
        width: 32px;
        display: flex;
        color: rgb(255, 255, 255);
        border: solid 1px #333;
        border-radius: 5px;
        position: relative;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 0px 12px 0.5px rgb(53, 53, 53);
    }

    .icon-button .button-text {
        visibility: hidden;
        width: 100px;
        background-color: rgb(136, 134, 134);
        color: #fff;
        text-align: center;
        padding: 6px;
        border-radius: 4px;
        position: absolute;
        z-index: 1;
        top: 125%; 
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .icon-button:hover .button-text {
        visibility: visible;
        opacity: 1;
    }

    .top-line {
        width: 30%;
    }
}

@media(max-width: 799px) {
    .ip-box {
        visibility: hidden;
    }

    .left {
        visibility: hidden;
        opacity: 0;
    }

    .title {
        align-self: center;
        font-size: 300%;
        font-weight: bold;
        background: linear-gradient(90deg, #3fdadd, #176ece, #ae17ce);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: center;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .center {
        width: 100%;
        font-size: 3vw;
        margin-top: -40px;
    }

    .icon-box {
        display: flex;
        margin-top: 25px;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 24px;
        margin-bottom: 20px;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-size: 14px;
        margin-left: -7px;
    }

    .icon-button {
        padding: 2px;
        height: 32px;
        width: 110%;
        display: flex;
        color: rgb(255, 255, 255);
        border: solid 1px #333;
        border-radius: 5px;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 0px 12px 0.5px rgb(53, 53, 53);     
        text-decoration: underline;   
    }


    .top-line {
        width: 80%;
    }
}

