* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-size: 10px;
}

body {
    font-family: 'Montserrat', sans-serif;
}

main {
    width: 100%;
    min-height: 100vh;
    /* background: linear-gradient(to right ,#0f0c29,#302b63,#24243e); */
    background:#212226;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}


a {
    text-decoration: none;
    color: #f4f4f4;
}

.container {
    width: 60%;
    height: 80vh;
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
    backdrop-filter: blur(2rem);
    border-radius: 2rem;
    z-index: 2;
    box-shadow: 20px 15px 15px #0f0c29;
    display: flex;
}

@media screen and (max-width:1400px){
    .container {
        width: 90%;
        height: 90vh;
    }
}

@media screen and (max-width: 700px) {
    .container {
        width: 90%;
        height: 90vh;
        flex-direction: column;
    }
}

.circle1 {
    width: 200px;
    height: 200px;
    background: #fff;
    /* background: linear-gradient(to right bottom,
            rgba(255, 255, 255, .8),
            rgba(255, 255, 255, 0.3)); */

            background: linear-gradient(to right bottom, rgba(255, 189, 57, 0.5), rgba(255, 189, 57, 0.3));
    position: absolute;
    left: 13%;
    top: 70%;
    border-radius: 100%;
}

.box1{
    width: 200px;
    height: 200px;
    background: #fff;
    /* background: linear-gradient(to right bottom,
            rgba(255, 255, 255, .8),
            rgba(255, 255, 255, 0.3)); */
            background: linear-gradient(to right bottom, rgba(255, 189, 57, 0.2), rgba(255, 189, 57, 0.3));
    position: absolute;
    right: 13%;
    bottom: 70%;
    border-radius: 2rem;
}

@media screen and (max-width:1400px){
    .circle1 {
        width: 120px;
        height: 120px;
        background: #fff;
        background: linear-gradient(to right bottom,
                rgba(255, 255, 255, .8),
                rgba(255, 255, 255, 0.3));
        position: absolute;
        left: -20px;
        top: 85%;
        border-radius: 100%;
    }
    
    .box1{
        width: 120px;
        height: 120px;
        background: #fff;
        background: linear-gradient(to right bottom,
                rgba(255, 255, 255, .8),
                rgba(255, 255, 255, 0.3));
        position: absolute;
        right: 0px;;
        bottom: 85%;
        border-radius: 2rem;
    }
}

@media screen and (max-width: 700px){
    .circle1 {
        width: 100px;
        height: 100px;
        background: #fff;
        background: linear-gradient(to right bottom,
                rgba(255, 255, 255, .8),
                rgba(255, 255, 255, 0.3));
        position: absolute;
        left: -20px;
        top: 85%;
        border-radius: 100%;
    }
    
    .box1{
        width: 100px;
        height: 100px;
        background: #fff;
        background: linear-gradient(to right bottom,
                rgba(255, 255, 255, .8),
                rgba(255, 255, 255, 0.3));
        position: absolute;
        right: 0px;;
        bottom: 85%;
        border-radius: 2rem;
    }
}

/* Dashboard */

.dashboard {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    background: linear-gradient(to right bottom, rgba(255, 189, 57, 1), rgba(255, 189, 57, 0.5));
    border-radius: 2rem 0 0 2rem;
}

.dashboard h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.dashboard p {
    font-size: 2rem;
}

#copy-email {
    margin-top: 2rem;
    padding: 1rem 2rem;
    border:none;
    border-radius: 4rem;
    cursor:pointer;
    box-shadow: 3px 3px 10px #0f0c29;
    display: inline-block;
    background-color: #0f0c29;
    transition: .2s;
}
#copy-email:hover {
    box-shadow: 3px 3px 15px #0f0c29;
    transform: scale(1.1);
    transition: .2s;
}


.dashboard img {
    width: 40%;
    border-radius: 50%;
}

@media screen and (max-width: 1400px){

}

@media screen and (max-width: 700px){   
    .dashboard {
        flex: 2;
        border-radius: 2rem 2rem 0 0;
    }
    
    .dashboard h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        margin-top: .2rem;
    }
    
    .dashboard p {
        font-size: 2rem;
        margin-bottom: .5rem;
    }
    
    #copy-email {
        margin-top: 0rem;
        margin-bottom: .5rem;
        padding: .5rem 1rem;
        border:none;
        border-radius: 4rem;
        cursor:pointer;
        box-shadow: 3px 3px 10px #0f0c29;
    }
    
    
    .dashboard img {
        width: 20%;
        border-radius: 50%;
    }
}


/* liNKS */

.links {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    overflow: auto;
}

.link-title {
    width: 100%;
    height: 10%;
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.links h2 {
    margin-bottom: 5rem;
    margin-top: 3rem;
    font-size: 3rem;

}

.links-details {
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-self: center;
    overflow: auto;
}

.link {
    display: flex;
    margin: 2rem 0;
    align-items: center;
    /* background: linear-gradient(to right ,#0f0c29,#302b63,#24243e); */
    background: linear-gradient(to right bottom, rgba(255, 189, 57, 0.9), rgba(255, 189, 57, 0.5));
    opacity: 0.8;
    border-radius: .5rem;
    width: 60%;
    justify-content: center;
    font-size: 3rem;
    margin: 2rem auto;
}

.link a {
    width: 100%;
    height: 100%;
    padding: 1rem 5rem;
    position: relative;
}

.link a i {
    margin-right: 5%;
}

.link a::after {
    content: "";
    width: 20px;
    height: 20px;
    background: white;
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%;
    visibility: hidden;
}

.link a:hover {
    background: linear-gradient(to right bottom, rgba(255, 189, 57, 1), rgba(255, 189, 57, 1));
    border-radius: .5rem;
}

.link a:hover::after {
    visibility: visible;
    opacity: 1; 
}

.link span {
    font-size: 1.8rem;
}

@media screen and (max-width: 1400px){
    .links {
        flex: 2;
    }

    .link span {
        font-size: 2rem;
        transform: translateY(2px)
    }

    .link {
        width: 80%;
    }

    .link a {
        display: flex;
        text-align: center;
        justify-content: left;
    }
}

@media screen and (max-width: 700px){
    .links {
        flex: 4;
    }

    .link span {
        font-size: 2rem;
        transform: translateY(2px)
    }

    .links h2 {
        margin-bottom: 1rem;
        margin-top: 3rem;
        font-size: 2rem;
    }

    .link {
        width: 80%;
    }

    .link a {
        display: flex;
        text-align: center;
        justify-content: left;
    }
}


.links-details::-webkit-scrollbar {
    background: transparent;
    width: 5px;
    
}
.links-details::-webkit-scrollbar-thumb {
    background: #EBB853;
    border-radius: 2rem;
    overflow: hidden;
}