body {
    background-color: #141414;
    color: rgb(153, 153, 153);
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: sans-serif;
    height: 100vh;
    justify-content: center;
}

h1 {
    color: white;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
}

h2 {
    color: rgb(153, 153, 153);
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
}

.content-wrapper {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    margin-top: 40px;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-bar {
    width: 300px;
    height: 100px;
    border: 1px solid #262626;
    border-radius: 5px;
    padding: 10px;
    background-color: #141414;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    outline: none;
    resize: none;
}

.search-bar::placeholder {
    color: rgb(153, 153, 153);
}

.search-button {
    margin-top: 10px;
    width: 150px;
    height: 40px;
    background-color: #6f3bf6;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.right {
    margin-left: 50px;
}

.placeholder-image {
    width: 300px;
    height: 300px;
    background-color: #262626;
}

#gensvg {
    text-align: center;
    align-content: center;
    position: relative;
    overflow: hidden;
}

#copybtn {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    opacity: 0.25;
}

#copyColor {
    stroke: #e3e3e3;
}

#copybtn:hover #copyColor {
    stroke: white;
}

#copybtn:hover {
    opacity: 1;
}

#checksvg {
    position: absolute;
    right: 18px;
    top: 18px;
    display: none;
}

#gennedsvg {
    overflow: visible;
}

.generator-link {
    color: #8d63f9;
    width: fit-content;
    display: block;
    background: #004e9847;
    padding: 10px 15px;
    text-align: center;
    font-weight: normal;
    font-size: 17px;
    margin-left: auto;
    border-radius: 35px;
    margin-right: auto;
    border: 1px solid #6f3bf6;
    margin-top: 40px;
    margin-bottom: 40px;
}

a {
    text-decoration: none
}