body {
    background: #eff8ff;
    font-family: "Trebuchet MS", Helvetica, sans-serif;
}

textarea,
input {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
}

.content-section {
    padding: 10px 10px 10px 10px;
    max-width: 1200px;
    width: 100%;
    margin: 20px auto 0;
    background-color: white;
    -webkit-box-shadow: 0px 0px 10px 5px #d8f0ff;
    -moz-box-shadow: 0px 0px 10px 5px #d8f0ff;
    box-shadow: 0px 0px 10px 5px #d8f0ff;
}

.header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.logo {
    width: 75px;
    height: 75px;
}

.title {
    margin-left: -75px;
    flex-grow: 1;
    text-align: center;
}

.top {
    /* border: 1px solid red; */
    margin: 0 auto;
    width: 970px;
    height: 90px;
}

.middle {
    /* border: 1px solid red; */
    margin: 0 auto;
    width: 970px;
    height: 90px;
}

.content {
    padding: 5px;
}

.content-main {
    margin-top: 15px;
    background: #f4f4f4;
}

.section-content {
    background: white;
}

#textcontent {
    width: 100%;
    height: 225px;
    resize: vertical;
    margin-top: 7px;
}

.button-container {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

button {
    border: none;
    border-radius: 6px;
    padding: 8px;
    background-color: #0081e6;
    color: white;
    font-weight: bold;
}

button:hover,
button.selected {
    background-color: #004880;
}

a:link,
a:visited {
    color: rgb(0, 101, 179);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#toast {
    visibility: hidden;
    max-width: 50%;
    margin: auto;
    background-color: red;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
    transform: translateX(-50%);
}

#toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 5s;
    animation: fadein 0.5s, fadeout 0.5s 5s;
}

.footer {
    text-align: center;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}