@font-face {
    font-family: "Bungee Inline";
    src: url('../fonts/BungeeInline-Regular.ttf');
}

@font-face {
    font-family: "Black Ops One";
    src: url('../fonts/BlackOpsOne-Regular.ttf');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 18px;
}

body {
    background-color: #6495ed;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    margin-top: 50px;
    height: 220px;
    font-family: 'Bungee Inline', cursive;
}

h1 {
    font-size: 5em;
    text-align: center;
    color: #fff;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: 'Black Ops One', cursive;
}

.dots {
    color: #fff;
    font-size: 5em;
}

#horas,
#minutos,
#segundos {
    background-color: transparent;
    font-size: 7em;
    width: 200px;
}

.time {
    display: flex;
    padding: 20px;
    background-color: rgba(132, 167, 233, 0.6);
    color: #fff;
    align-items: center;
    text-align: center;
    border-radius: 7px;
}

footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: #343a40;
    height: 80px;
    justify-content: center;
    position: fixed;
    bottom: 0;
    border-top: 1px solid black;
}

.logo img {
    width: 80px;
}

.container-social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-social a {
    padding: 3px;
}

@media(max-width: 900px) {

    .title{
        margin-top: 100px;
    }

    h1 {
        font-size: 3em;
    }

    .container {
        width: 60%;
    }

    #horas,
    #minutos,
    #segundos {
        font-size: 4em;
    }

    .dots {
        font-size: 2em;
    }

    .time {
        display: block;
        padding: 7px;
        width: 100%;
    }
}

@media(max-width: 400px) {

    .title {
        margin-top: 150px;
    }

    h1 {
        font-size: 2.5em;
    }

    .container {
        width: 100%;
        justify-content: center;
    }

    #horas,
    #minutos,
    #segundos {
        font-size: 2em;
    }

    .dots {
        font-size: 1.5em;
    }

    .time {
        padding: 5px;
        width: 25%;
    }
}

@media(max-width: 280px) {

    .title {
        margin-top: 100px;
    }

    h1 {
        font-size: 2em;
    }

    #horas,
    #minutos,
    #segundos {
        font-size: 1.6em;
    }

    .dots {
        font-size: 1.2em;
    }

}