body{
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.copyContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-width: 100vw;
    max-width: 100vw;
    height: 100%;
    min-height: 100vh;
    max-height: 100vh;
    background-color: rgb(217, 245, 243);

}
.copyPacketContainer{
    display: flex;
    flex-direction: column;
    width: 800px;
}
.copyRow{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 50px;
    gap: 20px;
}
.copyTextContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
   
}
.textElement{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.copyButtonContainer{
    display: flex;
    gap: 5px;
}
.copyButton{
    height: 50px;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 10px;
    background-color: green;
    color: white;
    cursor: pointer;
}
.copyButton:hover{
    background-color: rgba(0, 128, 0, 0.7);
}
#shutdownDownloadButton{
    background-color: blue;
}
#shutdownDownloadButton:hover{
    background-color: rgba(0, 0, 255, 0.7);
}
#clearDownloadButton{
    background-color: blue;
}
#clearDownloadButton:hover{
    background-color: rgba(0, 0, 255, 0.7);
}
