@charset "UTF-8";


@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Press+Start+2P&display=swap');


:root {



  --fonte-padrao: Arial, verdana, helvetica, sans-serif;
  --fonte: 'Press Start 2P', cursive;
  
  

}

* {
    margin: 0px;
    padding: 0px;
}

body {
    background-color: #3c3c3c;
    height: 100vh;
    width: 100vw;
}

header {
    background-color: #333333;
    min-height: 200px;
    text-align: center;
    padding-top: 40px;
    
}

header > h1 {
    color: #00ffff;
    font-family: var(--fonte);
    font-size: 2.5em;
    font-weight: normal;
    margin-bottom: 20px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.521);

}

header > p {
    color: #00ffff;
    font-family: var(--fonte);
    max-width: 600px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 30px;
    font-size: .7em;
    margin: auto;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.452);

}

nav {
    background-color:#333333;
    padding: 10px;
    box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.514);
    
}

nav > a {
    color: #00ffff;
    padding: 10px;
    text-shadow:1px 1px 1px black;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-family: var(--fonte);
    font-size: .6em;
    transition-duration: .5s;

}

nav > a:hover {
    background-color: #8d9ba4;
    color: #1b98e0;
}

main {
    background-color: #3c3c3c;
    min-width: 300px;
    max-width: 1000px;
    margin: auto;
    padding: 20px;


}

main > h2 {
    font-family: var(--fonte);
    font-size: .8em;
    padding-top: 10px;
    padding-bottom: 5px;
    color: #00ffff;
    text-shadow: 1px 1px 1px black;
}

main > p {
    padding-bottom: 40px;
    text-align: justify;
    text-indent: 20px;
    line-height: 25px;
    box-shadow: 2px 2px 2px #00ffff;
    padding-right: 4px;
    color: white;
    font-family: Arial, Helvetica, sans-serif ;
}

main > #paragrafo2 {
    padding-top: 40px;
}
.content {
    
    margin-top: 10px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    
}

.navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    display: flex;

}

.barra {
    width: 50px;
    height: 17px;
    border: 3px solid #00ffff;
    margin: 6px;
    border-radius: 10px;
    cursor: pointer;
    transition: .4s;

}

.barra:hover {
    background: #329542;
}
input {
    display: none;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
}

.slide {
    width: 34%;
    transition: .6s;
}

.slide img {
    width: 100%;
    height: 100%;
}

#slide1:checked ~ .s1 {
    margin-left: 0;

}

#slide2:checked ~ .s1 {
    margin-left: -34%;
}

#slide3:checked ~ .s1 {
    margin-left: -68%;
}

ul > li {
    margin: 20px;
    display: inline;
}

a.externo {
    text-decoration: none;
    font-weight: bold;
    color: #00ffff;
    padding: 2px 4px;
}

a.externo::after {
    content: '\00A0\1F517';
}

.box {
    background-color: black;
    display: inline-block;
    margin: 15px;
    text-align: center;
    box-shadow: 0px 0px 10px #00ffff;
    border-radius: 15px;
    color: #00ffff ;
    text-shadow: 0px 0px 3px #00ffff;
    font-family: var(--fonte);
    font-size: .5em;
}

.voltar {
    text-align: center;
}

#vol {
    color: #00ffff;
    text-decoration: none;
    font-family: var(--fonte);
    padding: 10px;
    background-color: black;
    border-radius: 5px;
    box-shadow: 1px 1px 3px #00ffff;
    margin-top: 100px;
}

h5 {
    color: white;
}

#html {
    box-shadow: 0px 0px 7px white;
    background-color: #ff7200;
    color: white;
}

#css3 {
    box-shadow: 0px 0px 7px white;
    background-color: #006494;
    color: white;
}

#javascript {
    box-shadow: 0px 0px 7px white;
    background-color: #dacb0f;
    color: white;
}

footer {
    text-align: center;
    margin-top: 50px;
    background-color: #333333;
    color: #00ffff;
}
