*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
/*Padrão CSS*/
body{
    width: 100vw; 
    height: 100vh; 
    background-image:url(paisagem2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #000000aa;
    background-blend-mode: darken;
    display: flex;
    justify-content: center;
    align-items: center;
}
main{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
h1 {
    color: seashell;
    font-size: clamp(40px, 10vw, 120px) ;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100px;
    font-style: italic;
}
p {
    font-size: 50px;
    font-family: 'Montserrat', sans-serif;
}
button {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    color: black;
    background-color: gold;

}
imput {
    font-size: 50px;
}
.apresentacao{
    color: white;
    font-size: clamp(20px, 5vw, 60px);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: italic;
}
.informacao{
    width: 150px;
    height: 40px;
    background-color: gold;
    border-style: none;
    border-radius: 10px 10px 10px 10px;
}
.linked{
    width: 150px;
    height: 40px;
    background-color: steelblue;
    border-style: none;
    border-radius: 5px;
    color: white;
}
.github{
    width: 150px;
    height: 40px;
    background-color: black;
    border-style: none;
    border-radius: 5px;
    color: white;
}
.instagram{
    width: 150px;
    height: 40px;
    background-color :orange ;
    border-style: none;
    border-radius: 5px;
    color: white;
}


