body{
    --lightcolour: #fffd0c;
    --breezycolour: #d5ffff;
    --bgcolour: #07c2ff;
    --fgcolour: #006bff;

    background-color: var(--bgcolour);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin: 0;
    text-align: center;
}

header{
    background-color: var(--bgcolour);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    padding-bottom: 0px;
    flex-direction: column;
}

h1{
    font-size: 40px;
}

header h2{
    font-size: 30px;
    color: var(--fgcolour);
}

.logo{
    max-width: 100%;
    max-height: 100%;
}

section{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    padding-bottom: 35px;
    background-color: var(--breezycolour);
}

.info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
@media only screen and (min-width: 711px) {
    .info{
        flex-direction: row-reverse;
        justify-content: space-around;

    }

    section{
        padding-left: 30px;
    }
}

.info-img{
    width: 100%;
    max-width: 294px;
    max-height: 400px;
    border: #fffd0c solid 2px;
    margin: 10px;
    border-radius: 15px;
    margin-bottom: 0px;
}

.info-text{
    text-align: center;
    font-size: 20px;
    padding: 10px;
}

.cleanList{
    list-style:inside;
}

footer{
    background-color: var(--fgcolour);
    margin: 0px;
    color: var(--lightcolour);
    padding: 10px;
}

footer a{
    color: var(--lightcolour);
    font-size: 20px;
}

.socialsLink{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}