
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a{
    color: inherit;
    text-decoration: none;
}









@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
    transition: all ease .5s;

}
body{
    margin: 0;
    padding: 0;
}

main{
    margin-top: 25px !important;
    display: flex;
    gap: 2px;
    flex-direction: column;
    max-width: 70%;
    margin: auto;
}

#confession_form{
    padding: 20px 25px;
    background-color: #2f2f2f;
    color: rgb(219, 202, 50);
    border-radius: 30px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

#confession_form > .confession_element {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

input, input:focus, textarea, textarea:focus{
    padding: 10px;
    border-radius: 4px;
    outline: none;
    border: none;
} 

#confession {
    width: 100%;
    min-height: 100px;
}

#confession_submit{
    width: 150px;
    height: 50px;
    margin: auto;
    background: white;
    color: #2f2f2f;
    border: 1px solid #2f2f2f;
    border-radius: 40px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 6px 20px -5px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

#confession_submit:hover{
    border: 1px solid white;
    background-color: #2f2f2f;
    color: white;

}

#about{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;

    margin: auto;
    color: rgb(219, 202, 50);

}

#about > .about_div {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background-color: #2f2f2f;
    border-radius: 30px;
    padding: 20px 25px;
    align-items: center;
    justify-content: center;

}

#about h1 {
    font-size: 30px;
    letter-spacing: 10px;
    rotate: -3deg;
    text-align: center;
}

#about p {
    font-size: 12px;
    text-indent: 20px;
    line-height: 18px;
}

#read_confession_img {
    width: 80px;
    fill: rgb(219, 202, 50);
}

.read_confession {
    border: 3px solid rgb(219, 202, 50);
}
