@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@400..700&family=Shadows+Into+Light&display=swap');

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

body {
    background-color: black;
    color: white;
    line-height: 1.5;
}

.all-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 7rem 7rem;
    align-items: center;
    min-height: 100vh;
}

.abt-me {
    flex: 1;
    max-width: 500px;
}

.abt-me h1 {
    font-family: "Shadows Into Light", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
}

.abt-me p {
    font-family: "Shadows Into Light", cursive;
    font-weight: 400;
    font-size: 1.5rem;
}

.generator {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    min-width: 300px;
}

.gen-btn {
    background-color:black;
    color: white;
    border-color: white;
    border-radius: 20px;
    border-style: groove;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-family: "Shadows Into Light",  cursive;
    overflow: hidden;

    cursor: pointer;
    letter-spacing: 1px;
    position: relative;
}

.gen-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.word-gen {
    font-family: "Shadows Into Light", cursive;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-gen  {
    width: 160px;
    height: 80px;
    background: black;
    border-radius: 20%;
    border: 3px groove white;
    flex-shrink: 0;
}


.word-gen {
    font-family: "Shadows Into Light", cursive;
    font-weight: 600;
    font-size: 1.5rem;
    color: white;
    background-color: black; 
    border: 3px groove white;
    border-radius: 20px;
    border-radius: 20%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 160px;
    min-height: 80px;
}


.color-name {
    font-family: "Shadows Into Light", cursive;
    font-size: 1.2rem;
    color: white;
    text-align: center;
    min-height: 1.5rem;
    min-width: 160px;
}

