* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

body {
    background: white;
}

/* ------------------ Header ------------------ */

header {
    width: 100%;
    height: 80px;
    background-color: #7B93D0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*padding: 0 100px;*/
}

.logo2 {
    width: 160px;
    height: 49px;
    margin-right: 25px;
    background-image: url(Monash_University_logo.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.logo {
    width: 80px;
    height: 54px;
    margin-left: 25px;
    background-image: url(uniwarwick.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.dropdown {
    display: none;
}

.menu ul {
    display: flex;
}

.menu.active {
    height: 550px;
    z-index: 1;
}

.menu ul li a {
    display: block;
    color: white;
    font-size: 20px;
    padding: 10px 25px;
    border-radius: 10px;
    transition: 0.2s;
    margin: 0 5px;
}

.menu ul li a:hover{
    color: white;
    background-color: black;
}

.menu ul li a.active {
    color: white;
    background-color: black;
}

/* ------------------ Footer ------------------ */

footer {
    background-color: #7B93D0;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    color: white;
}

footer ul {
    display: flex;
    margin: 0 auto;  
}

footer ul li {
    display: block;
    margin: 0 10px 0 10px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
}

footer ul li a {
    color: white;
}

/* ------------------ Page Specific Content ------------------ */

.content {
    color: #000;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.content li {
    margin-top: 10px;
    font-size: 20px;
}

.content li a {
    text-decoration: none;
    color: black;
}

.content li a:hover{
    background-color: #000;
    color: white;
    border-radius: 5px;
    padding: 5px;
}

.content h3 {
    color: #7B93D0;
    font-weight: bold;
    font-size: 25px;
    margin-top: 50px;
}

/* ------------------ Responsiveness ------------------ */

/* @media only screen and (max-width: 1320px){
    header {
        padding: 0 50px;
    }
} */

@media only screen and (max-width: 1200px){
    .logo2 {
        width: 114px;
        height: 35px;
    }
}

@media only screen and (max-width: 1150px){
    .logo2 {
        background-image: none;
    }
    .logo {
        background-image: none;
    }
}


@media only screen and (max-width: 1100px){
    header {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 1000px){

    .logo2 {
        width: 80px;
        height: 25px;
        margin-left: 25px;
        background-image: url(Monash_University_logo.svg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .logo {
        width: 80px;
        height: 54px;
        margin-right: 25px;
        background-image: url(uniwarwick.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    

    .dropdown {
        display: block;
        cursor: pointer;
    }

    .dropdown .line {
        width: 30px;
        height: 3px;
        background: #fefefe;
        margin: 6px 0;
    }

    .menu {
        height: 0;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100vw;
        background: #7B93D0;
        transition: 0.5s;
        overflow: hidden;
    }

    .menu ul{
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }

    .menu.active ul {
        opacity: 1;
    }    

    .menu ul li a {
        margin-bottom: 12px;
    }
}

@media only screen and (max-width: 600px){
    footer ul li {
        font-size: 12px;
    }
}

@media only screen and (max-width: 300px){
    footer ul li {
        font-size: 8px;
    }
}
