body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway';
}

.sidebar {
    z-index: 9999;
    width: 250px;
    height: 100vh;
    background-color: #333;
    color: #fff;
    position: fixed;
    top: 0;
    left: -250px;
    transition: left 0.3s ease;
}

.sidebar.active {
    left: 0;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin-top: 100px;
}

.sidebar ul li {
    padding: 10px;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
}

.content {
    margin-left: 0;
    padding: 20px;
    transition: margin-left 0.3s ease;
}

.content.active {
    margin-left: 250px;
}

.hamburger {
    display: block;
    width: 30px;
    height: 20px;
    position: fixed;
    top: 20px;
    left: 20px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: orange;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:first-child {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    margin-top:20vh;
    margin-bottom: 20vh;
}

.rowContainer {
    display: flex;
    justify-content: left;
    align-items: left;
    margin-left: 5vw;
    margin-right: 5vw;
}

.utilButton {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

#copyButton,#downloadButton,#responseBox{
    display: none;
}

.responseDiv {
    position: relative;
    border-style: solid;
    border-radius: 20px;
    border-color: orange;
    overflow: auto;
    padding: 0 50px;
    margin: 50px 100px 100px 100px;
    
}
.submitButton {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    font-size: 16px;
    font-weight: 700;
    border: 3px solid orange;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    font-family: inherit;
    margin-top:50px;
}

.submitButton::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: orange;
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.submitButton:hover::before {
    transform: translateX(0);
}
.form {
    position: relative;
    padding: 50px;
    text-align: center;
    border-radius: 50px;
    background: #ffffff;
    box-shadow:  35px 35px 70px #d9d9d9,
    -35px -35px 70px #ffffff;
    width: 50vw;
    margin-top: 20vh;
    margin-bottom: 20vh;
}

select {
    border-radius: 10px;
    height: 30px;
    border-color: orange;
    border-width: 3px;
    font-size: medium;
    margin-left: 10px;
    width:15vw;
    
}

.textboxinput {
    border-style: solid;
    border-width: 3px;
    margin-top: 10px;
    border-radius: 5px;
    height: 25px;
}
h1.mid {
    position: relative;
    left: 70px;
}
#uni{
    margin: auto;
    text-align: center;
}

#blocks{
    position: relative;
    text-align: left;
    margin-top: 5vh;
    margin-left: 5vw;
    font-weight: bold;
}

* {
    box-sizing: border-box;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

.column {
    width: 25%;
    float: left;
    padding: 10px;
}

@media (max-width: 600px) {
    .column {
        width: 100%;
    }
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    min-height: 100px;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.card h3 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.card p {
    font-size: 14px;
    text-align: center;
}

fieldset {
    margin: 10px;
    border-radius: 10px;
}

.logout {
    padding-left: 10px;
    font-size: 22px;
    position: absolute;
    top: 20px;
    right: 20px;
    color: orange;
    font-size: 36px;
}

.gohome {
    padding-left: 10px;
    font-size: 22px;
    position: absolute;
    top: 20px;
    right: 70px;
    color: orange;
    font-size: 36px;
}

a {
    text-decoration: none;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    height: 5vh;
    width: 100%;
    background-color: orange;
    color: white;
    text-align: right;
}

.imageclass {
    margin-right: 20px;
}

.copyright {
    margin-right: 20px;
    align-content: center;
    font-size: large;
}