@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Kalam:wght@300;400;700&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Shantell+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Roboto:ital,wght@1,300&display=swap');

header{
    display: flex;
    flex-direction: column;
    align-items: center;
}

header h1{
    font-family: 'Pacifico', cursive;
	font-size: 75px;
	color: #EED439;
	margin-bottom: 20px;
}

header img{
    width: 80%;
    max-width: max-content;
    border-radius: 20px;
}

body {
    background-color: rgb(81, 117, 134);
    font-family: 'Roboto',Arial, Helvetica, sans-serif;
    text-align: justify;
}

.TyDebile {
    display: flex;
    flex-direction: row;
    padding: 20px 10%;
}

.TyKokso{
    display: flex;
    flex-direction: row;
    padding: 20px 10%;
    background-color: rgb(59, 57, 57);
}

.TyKokso img{
    width: 80%;
    max-width: max-content;
    border-radius: 20px;
}

@media (min-width: 1000px) {
    section {
        flex-direction: row;
    }
}

h1 {
    color: rgb(255, 196, 0);
    text-align: center;
    font-family: "Arial", cursive;
    font-size: 2em;
}

h2 {
    color: rgba(25, 148, 0);
    text-align: center;
    font-family: 'Can', cursive
}

p {
    text-align: center;
}

article {
    background-color: rgb(233, 233, 233);
    margin: 10px;
    color: rgb(13, 13, 13);
    text-align: center;
    border-top: 5px;
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1.3em;
    font-weight: bold;
    justify-content: center;
    border-top: 3px solid transparent;
    transition: 1s;
}

nav a:hover {
    border-color: white;
}

nav {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 25px 10px;
}

@media (min-width: 1000px) {
    nav {
        flex-direction: row;
        justify-content: center;
    }
}

article a {
    color:white ;
    background-color: rgb(81, 117, 134) ;
    padding: 10px 30px ;
    text-decoration: none;
}

article a:hover {
    color: black;
    background-color: rgb(75, 184, 38);
    transition: 0,5s;
}

@media (max-width: 1000px){
    .TyKokso{
        display: flex;
        flex-direction: column;
    }

    .TyDebile{
        display: flex;
        flex-direction: column;
    }

    
}