@import url("../css/variables.css");

/* Font */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body h1 {
    font-weight: 700;
    font-size: var(--h1phonesize);
}

body h2 {
    font-weight: 600;
    font-size: var(--h2phonesize);
}

body h3 {
    font-weight: 500;
    font-size: var(--h3phonesize);
}

body h4 {
    font-size: var(--h4phonesize);
    font-weight: 500;
}

body p {
    font-weight: 400;
    font-size: var(--pphonesize);
}

body button {
    font-weight: 300;
    font-size: var(--buttonphonesize);
    font-family: var(--font);
    color: var(--text-color);
}

.instructionsAlert li,
.instructionsAlert p {
    font-weight: 400;
    font-size: 20px;
    list-style-type: none;
}

/* Page Styles */
html, body, body {
    margin: 0 auto;
    overflow-x: hidden;
    max-width: 1980px;
    background-color: var(--mainpagecolor);
    font-family: var(--font);
    color: var(--text-color);
}

header,
footer {
    background-color: var(--header-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0px;
    padding: 20px 0px 20px 0px;
}

.copyAlert {
    display: none;
    position: fixed;
    background-color: var(--header-color);
    padding: 10px 50px 10px 50px;
    border-radius: 40px;
    width: 50%;
    text-align: center;
    border: 2px black solid;
    top: 50vh;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;

}

body {
    background-color: var(--primary-color);
}

.ColorsContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}

.IndividualColors {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    line-height: 0px;
    padding: 20px 0px 20px 0px;
}

.GenerateButtons {
    display: flex;
    justify-content: center;
    padding: 10px 0px 10px 0px;
}

.GenerateButtons button {
    margin: 0px 10px 0px 10px;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.GenerateButtons button:hover {
    background-color: var(--text-color);
}

.instructionsAlert {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--header-color);
    border-top: var(--text-color) 2px solid;
}

.instructions {
    display: none;
    flex-direction: column;
    position: fixed;
    background-color: var(--header-color);
    top: 210px;
    padding: 20px 30px 20px 30px;
    border-radius: 40px;
}

.instructionsClick:hover {
    cursor: pointer;
    text-decoration: underline;
}