@import url('https://fonts.googleapis.com/css2?family=Cossette+Titre&family=Racing+Sans+One&display=swap');

body {
    background-color: black;
    font-family: "Cossette Titre", sans-serif;
}

h1 {
    color: white;
    background-color: rgb(14, 14, 170);
    font-family: "Racing Sans One", sans-serif;
    font-size: 60px;
    margin: 0 auto;
}

h3 {
    font-size: 40px;
    text-align: center;
}

div {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
}

header {
    background-color: rgb(14, 14, 170);
    height: 120px;
    text-align: center;
    padding-top: 50px;
}

nav {
    background-color: white;
    border-top: 5px solid red;
    border-bottom: 5px solid red;
    border-left: 5px solid red;
    border-right: 5px solid red;
}

nav ul {
    background-color: white;
    padding: 20px;
    text-align: center;
}

nav li {
    display: inline-block;
}

nav a {
    text-decoration: none;
    color: white;
    background-color: rgb(14, 14, 170);
    padding: 30px;
    display: inline-block;
}

nav a:hover {
    color: white;
    background-color: red;
    
}

article {
    background-color: white;
    padding: 10px;
    margin: 10px;
    text-align: justify;
    border-top: 5px solid red;
    border-bottom: 5px solid red;
    border-left: 5px solid red;
    border-right: 5px solid red;
}

p {
    font-size: 20px;
}

article p a {
    text-decoration: none;
    color: white;
    background-color: rgb(14, 14, 170);
    padding: 2px;
}

article p a:hover {
    color: white;
    background-color: red;
}

.celda {
    display: flex;
    gap: 20px;
    margin: 0;
}

.columna {
    border-top: 4px solid blue;
   
}

footer {
    font-family: "Racing Sans One", sans-serif;
    font-size: 45px;
    color: white;
    background-color:rgb(14, 14, 170);
    padding: 50px;
    text-align: center;
    border-top: 5px solid red;
    border-bottom: 5px solid red;
    border-left: 5px solid red;
    border-right: 5px solid red;
}

.centrada {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 5px solid blue;
    width: 80%;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 600px) {
    nav ul {
        text-align: center;}
    nav a {
        padding: 8px;}
    h1 {
    font-size: 30px;
}
}