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%;
    font: inherit;
    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;
}

body {
    font-family: 'verdana';
}

header {
    background-color: #642E7E;
    padding: 20px;
    text-align: center;
}

.header-content {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-1 {
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: xx-large;
}

.logo-2 {
    font-family: 'Roboto', sans-serif;
    color: #f4d35e;
    font-size: xx-large;
}

.logo {
    width: 100px; /* Adjust this to change the size of the logo */
}

.button {
    display: inline-block;
    padding: 15px 25px;
    color: #ffffff;
    background-color: #7b6798;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.5s ease;
}

.button:hover {
    background-color: #c53030;
}

main {
    background-color: #F0F1F3;
    padding: 20px;
    text-align: center;
}

.form {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.inner-form {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mascot {
    width: 500px;
}

.legend {
    text-align: left;
}

.title {
    font-family: 'Roboto', sans-serif;
    color: #642E7E;    
}

.big-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #642E7E;
    margin-top: 10px;
}

.subtitle {
    font-family: 'Roboto', sans-serif;
    color: #909090;
    font-size: 1.5rem;
    margin-top: 30px;
}

.google-form {
    transform: scale(1.0);
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.google-form iframe {
    transform: scale(1.0);
    transform-origin: top left;
    width: 100%;
    height: 100%;
    overflow: hidden;
}