* {
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
    background-image: url('https://e1.pxfuel.com/desktop-wallpaper/909/947/desktop-wallpaper-under-construction-sign-work-computer-humor-funny-text-maintenance-maintenance.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}


.cont {
    width: 100%;
    height: 150px;
    margin: auto;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: rgb(254, 227, 4);
    border-top: 4px solid black;
    border-bottom: 4px solid black;
}

.cont img {
    width: 200px;
    margin-top: 15px;
}

.cont .title {
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: -12px;
}

.cont .content {
    font-weight: bold;
    font-size: 19px;
    margin-top: 10px;
    text-transform: capitalize;
}

@media (max-width: 720px) {
    .cont {
        height: 200px;
    }
}

footer {
    background-color: rgb(254, 227, 4);
    text-transform: capitalize;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    position: absolute;
    width: 100%;
    border-top: 2px solid black;
    bottom: 0;
}

footer a {
    text-decoration: none;
    color: black;
}