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

body {
    background-color: black;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: black;
    background: url("img/bg1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

:root {
    --BORDER-COLOR: rgba(31, 36, 77, 0.8);
    /* --BACKGROUND-COLOR: rgba(250, 250, 250, 0.5); */
    --BACKGROUND-COLOR: rgba(32, 35, 65, 0.8);
    /* --BACKGROUND-COLOR: rgba(9, 11, 32, 0.8); */
}

.container {
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* flex-direction: row;
    align-items: center;
    justify-content: space-evenly; */
    column-gap: 4rem;
    row-gap: 2rem;
    margin: 5%;
}

@media(max-width:900px) {
    .container {
        display: grid;
        grid-template-columns: 1fr;
    }
    .left-side {
        text-align: center;
    }
}

@media(max-width:500px) {
    .container {
        display: grid;
        grid-template-columns: 1fr;
    }
    .left-side {
        text-align: center;
        overflow-x: scroll;
    }
}


/* Activate at 475px */

.true {
    z-index: 0;
    transform: scale(0);
    position: absolute;
}

.left-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* width: 50%; */
}

.left-side h2 {
    font-size: 4em;
    line-height: 3.3rem;
    margin-bottom: 20px;
}

.left-side p {
    font-size: 1em;
    margin-bottom: 20px;
}

.left-side a {
    text-decoration: none;
    color: white;
    text-align: center;
    border-radius: 5px;
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
    border: 1px solid var(--BORDER-COLOR);
    background-color: var(--BACKGROUND-COLOR);
}


/* btn ripple hover */


/* hover effect for discord btn */

.btn {
    padding: 20px 40px;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 2px 10px 5px rgba(18, 24, 107, 0.3);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    background-color: rgba(3, 6, 37, 0.8);
    width: 0;
    height: 0;
    left: var(--xPos);
    top: var(--yPos);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width .5s, height .5s;
}

.btn:hover::before {
    width: 1200px;
    height: 300px;
}


/* hover effect for copy btn */

.copy {
    padding: 20px 40px;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 2px 10px 5px rgba(18, 24, 107, 0.3);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.copy span {
    position: relative;
    z-index: 1;
}

.copy::before {
    content: "";
    position: absolute;
    background-color: rgba(3, 6, 37, 0.8);
    width: 0;
    height: 0;
    left: var(--xPos);
    top: var(--yPos);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width .5s, height .5s;
}

.copy:hover::before {
    width: 1000px;
    height: 1000px;
}


/* hover effect for generate btn */

.generate {
    padding: 20px 40px;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 2px 10px 5px rgba(18, 24, 107, 0.3);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.generate span {
    position: relative;
    z-index: 1;
}

.generate i {
    color: white;
}

.generate::before {
    content: "";
    position: absolute;
    background-color: rgba(3, 6, 37, 0.8);
    width: 0;
    height: 0;
    left: var(--xPos);
    top: var(--yPos);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width .5s, height .5s;
}

.generate:hover::before {
    width: 1000px;
    height: 1000px;
}

.right-side .right-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.button-container {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.button-container button {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 1em;
    padding: 10px 20px;
    border: 1px solid var(--BORDER-COLOR);
    border-radius: 10px;
    background-color: var(--BACKGROUND-COLOR);
    box-shadow: 2px 2px 10px 5px rgba(18, 24, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.button-container button .icons {
    margin-right: 5px;
    color: white;
}

.animate {
    animation: rotate .7s infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(200deg);
    }
}

.quotes-container {
    padding: 50px;
    border: 1px solid var(--BORDER-COLOR);
    border-radius: 10px;
    background-color: var(--BACKGROUND-COLOR);
    box-shadow: 2px 2px 10px 5px rgba(18, 24, 107, 0.2);
}

.quotes-container h3 {
    text-align: center;
    font-size: 1.5em;
    padding-bottom: 10px;
}

.quotes-container p {
    text-align: center;
}