/* FUENTES IMPORTADAS */
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Special+Gothic+Expanded+One&display=swap');

/* GENERALES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img,
video {
    width: 100%;
}

body {
    font-family: "Jersey 15", sans-serif;
    font-size: 20px;
    text-align: left;
    background-color: rgb(207, 207, 207);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Special Gothic Expanded One', sans-serif;
    margin-top: 50px;
}

a {
    text-decoration: underline;
    color: black;
    background-color: gray;
    padding: 5x 20px;
    border-radius: 8px;
    text-wrap: nowrap;
}

.link {
    text-decoration: underline;
}

/* HEADER */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-height: 100vh;
}

nav {
    display: flex;
    text-decoration: none;
    gap: 20px;
    margin-top: 50px;
}

a {
    text-decoration: none;
    color: black;
    background-color: gray;
    padding: 5px 20px;
    border-radius: 8px;
}

a:hover {
    background-color: rgb(86, 86, 86);
}

.link {
    text-decoration: underline;
}

@media screen and (max-width: 600px) {

    header {
        padding: 20px;
    }

    h1 {
        display: flex;
        flex-direction: column;
    }

    nav {
        flex-direction: column;
        align-items: center;
    }

    .link {
        font-size: 18px;
    }
}