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

html {
 background-color: #eeeeee;
}

header#header {
 background-color: #7aa0ff;
 display: flex;
 justify-content: center;
 align-items: center;
 margin: -10px;
 height: 200px;
}

div#content {
 display: flex;
 flex-direction: column;
 align-items: center;
}

div#glass {
 background-image: linear-gradient(#ffffffaa, #ffffff66);
 backdrop-filter: blur(2px);
 border: solid;
 border-color: #ffffff;
 border-width: 2px;
 border-radius: 16px;
 padding: 0 32px;
 display: flex;
 flex-direction: column;
 align-items: center;
}

p {
 font-family: Roboto;
 font-size: 20px;
 color: #363636;
 text-align: center;
 margin-top: 50px;
}

h1 {
 font-family: Roboto; 
 font-size: 40px; 
 font-weight: 400; 
 color: #ffffff; 
}

section {
 font-family: 'PT Serif', ui-serif;
 font-size: 32px;
 color: #363636;
 margin-top: 20px;
 margin-bottom: -40px;
 text-align: left;
 border-width: 0 0 2px 0;
 border-color: #363636;
 border-style: solid;
}

a {
 color: #316cff;
 text-decoration: none;
}

#secretButton {
 transition: transform 0.2s ease-in-out;
}

#secretButton:hover {
 transform: scale(1.2)
}

button {
 background-color: #e62c2c;
 color: #ffffff;
 font-family: Roboto;
 font-size: 16px;
 font-weight: 500;
 border-width: 0px;
 border-radius: 4px;
 padding: 12px 48px;
 margin-bottom: 10px;
 cursor: pointer;
 transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

button:hover {
 background-color: #bd2424;
 box-shadow: 0 2px 8px #00000085;
}
