* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
}

.main {
    width: 100vw;
    height: 100vh;
    background: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
}

.bg {
    width: 50%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bg-gif {
    width: 50%;
}

.textBox {
    font-family: "Roboto Mono", monospace;
    color: rgb(255, 255, 255);
    margin: auto;
    width: 100vw;
    height: 100vh;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: #ffffff03;
    backdrop-filter: blur(10px);
}

.textBox h1 {
    font-size: 7em;
    margin-top: 10%;
    text-shadow: 0 0 10px rgba(193, 232, 255, 0.452);
}

#speakButton {
    color: white;
    margin-top: 2%;
    width: 20%;
    height: 10%;
    border-radius: 50px;
    background: #ffffff21;
    backdrop-filter: blur(10px);
    border: none;
    cursor: pointer;
    border: 1px solid white;
    box-shadow: 0 0 20px  rgba(193, 232, 255, 0.452);
    transition: 2s;
}

#speakButton:hover {
    background: #86BFCA;
}

#hiddenText {
    font-size: 5em;
    color: white;
    position: fixed;
    z-index:100;
}

.lastQuote {
    color: white;
    width: 100vw;
    height: 5vh;
    position: fixed;
    display: flex;
    justify-content: center;
    top: 95%;
}

.lastQuote a {
    color: #86BFCA;
    text-decoration: none;
}

#hidden {
    display: none;
}

#unhidden {
    width: 70vw;
    height: 90vh;
    background: rgba(15, 15, 15, 0.719);
    position: fixed;
    z-index: 100;
    left: 15%;
    top: 5%;
    border-radius: 15px;
    overflow:flex;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}


.appleStyle {
    width: 100%;
    height: 7%;
    display: flex;
    border-bottom: 1px solid #000000;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.482);
}

.dotBox {
    width: 13%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#red {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: red;
}

#yellow {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: yellow;
}

#green {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: green;
}

.crossButton {
    width: 84%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#crossButton {
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
}

.imageAndParaAbtMe {
    margin-top: 3%;
    width: 90%;
    height: 80%;
    border: 1px solid #c0aeae;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#myPic {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#myPic img {
    height: 90%;
    border-radius: 10px;
}

#myPara {
    width: 40%;
    height: 100%;
    color: white;
    font-family: "Roboto Mono", monospace;
    text-align: justify;
}

#myPara h1 {
    margin-top: 25%;
    color: #FFD803;
}


#myPara p {
    margin-top: 5%;
}

#myPara a {
    text-decoration: none;
    color: #86BFCA;
}



@media screen and (max-width: 1000px) {

    .main {
        width: 100vw;
        height: 90vh;
        background: rgb(0, 0, 0);
        display: flex;
        justify-content: center;
    }

    .bg {
        width: 100%;
        height: 70%;
    }

    #bg-gif {
        width: 100%;
    }

    .textBox {
        height: 80vh;
    }

    .textBox h1 {
        font-size: 3.5em;
        margin-top: 50%;
        text-align: center;
    }

    .textBox p {
        font-size: 0.9em;
        text-align: center;
    }

    #speakButton {
        margin-top: 5%;
        width: 50%;
        height: 8%;
    }

    #speakButton {
        background: #86BFCA;
    }

    #speakButton:hover {
        background: #86BFCA;
    }

    .lastQuote {
        font-size: 0.9em;
    }

    #unhidden {
        width: 95vw;
        height: 90vh;
        left: 2.5%;
        top: 1.5%;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .appleStyle {
        width: 100%;
        height: 7%;
        display: flex;
        border-bottom: 1px solid #000000;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.482);
    }
    
    .dotBox {
        width: 25%;
    }   
    
    .crossButton {
        width: 70%;
    }

    .imageAndParaAbtMe {
        width: 100%;
        height: 90%;
        flex-direction: column;
        justify-content: space-between;
        border: none;
    }
    
    #myPic {
        width: 100%;
        height: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    #myPic img {
        height: 100%;
        border-radius: 10px;
    }
    
    #myPara {
        width: 90%;
        height: 50%;
    }

    #myPara h1 {
        margin-top: 1%;
        color: #FFD803;
        text-align: center;
    }
    
    
    #myPara p {
        margin-top: 2%;
    }
    
    #myPara a {
        text-decoration: none;
        color: #86BFCA;
    }
     
}