@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');

/* master */
:root {
    --white: rgb(245,245,245);
    --black: rgb(8,8,8);
    --black_opaque: rgb(8,8,8,0.5);
    --transparent: rgba(0,0,0,0);
    --primary: rgb(184,217,201);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* border: 1px var(--white) solid; */
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--black);
    background: var(--black);
}

a {
    color: var(--black);
    text-decoration: none;
}

input {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    width: 100%;
}

select {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    width: 100%;
}

textarea {
    resize: none;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    width: 100%;
    height: 10rem;
}

button {
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: var(--white);
    background: transparent;
    border: 1px var(--white) solid;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
    margin-top: 1rem;
    padding: 1rem 0;
    width: 100%;
    transition: 0.5s;
}

button:hover {
    color: var(--black);
    background: var(--white);
}

.alt_button {
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: var(--black);
    background: var(--white);
    border: 1px var(--white) solid;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
    margin-top: 1rem;
    padding: 1rem 0;
    width: 100%;
    transition: 0.5s;
}

.alt_button:hover {
    color: var(--black);
    background: var(--white);
}

.danger_button {
    color: var(--black);
    background: var(--primary);
}

.danger_button:hover {
    background: var(--primary);
}

/* text */
h1 {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: 600;
    line-height: 5rem;
}

h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 2rem; 
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0.15rem;
}

/* tools */
.padding {
    padding: 0 18rem;
}

#image_modal {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    background: var(--white);
    inset: 0;
    z-index: 999999;
}

#image_modal .close {
    cursor: pointer;
}