@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');

body {
    background-color: #F1EAE0;
    color: #252B4D;
    font-family: Montserrat, Verdana, sans-serif;
    font-weight: 400;
    font-size: 150%;
    margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Oswald, 'Courier New', Courier, monospace;
    font-weight: 400;
    padding-left: 50px;
}

h1{
    font-size: 300%;
    margin-top: 0px;
}

a {
    text-decoration: underline;
    color: #252B4D;
}
a:hover {
    color: grey;
}

ul {
    list-style-type: none;
    padding-right: 40px;
}

li {
    margin: 20px 0px;
}

img {
    padding: 0px;
    margin: 0px;
    flex-shrink: 0;
}

form {
    padding: 0px 50px;
}

form > h1 {
    padding-left: 0px;
}

input, textarea {
    margin: 20px;
}

button {
    padding: 20px 50px;
    border-radius: 20px;
    border: none;
    background-color: #E5AD78;

    text-align: center;
    color: #252B4D;
    font-family: Montserrat, Verdana, sans-serif;
    font-weight: 400;
    font-size: 100%;
}
button:hover {
    background-color: #ecc783;
    color: gray;
    cursor: pointer;
}

hr {
    margin: 40px;
    width: 80%;
    height: 1px;
    background-color: #252B4D;
    justify-content: center;
    border: none;
}

.piece {
    display: flex;
    flex-direction: row;
    margin: 20px 40px;

    justify-content: space-between;
}

.piece > p {
    padding-left: 40px;
    text-align: right;
}
.piece > img {
    flex-shrink: 0;
}

.content {
    display: block;
    flex-direction: column;

    padding: 0px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.collapsible {
    margin: 10px 0px;

    height: 80px;
    border: none;
    border-radius: 0px 20px 20px 0px;

    text-align: left;
    padding-left: 50px;

    font-family: Montserrat, Verdana, sans-serif;
    font-weight: 400;
    font-size: 150%;
    color: #252B4D;

    transition: padding-left 0.3s ease;
}
.collapsible:hover {
    color: gray !important;
    cursor:pointer;
    padding-left: 80px;

    transition: padding-left 0.3s ease;
}

.mobileonly {
    display: none;
}

@media (max-width:800px) {
    .nomobile {
        display: none !important;
    }
    .mobileonly {
        display: initial;
    }

    .piece {
        flex-direction: column !important;
    }
    .piece > img {
        width: 80%;
    }

    .collapsible {
        font-size: 120%;
    }
    .collapsible:hover {
        padding-left: 50px;
    }

    body {
        font-size: 100%;
    }
}