*reset {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}
.sometype-mono-uniquifier {
    font-family: "Sometype Mono", monospace;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}
a {
    color: inherit;
    text-decoration: none;
}

ol,li,ul {
    list-style: none;
}

body {
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, 'Helvetica Neue', sans-serif;
    color: white;
    background-color: black;
}
span{
    color:grey;
}
.home{
    color: white;
}

.background-image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}

header {
    font-family: "Sometype Mono", monospace;
    padding:5px;
    display: flex;
    align-items: center;
    justify-content: space-around;

}
.nome{
    color: white;
}
.icone-e-nome {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.icone-e-nome img{
    width: 20px;
    height: 20px;
}
span {
    cursor: pointer;
}

.button-1 {
    font-family: system-ui, -apple-system, 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0D6FFF;
    width: 120px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.main-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width:760px;
}
.main-text{
    font-size: 96px;
}

.sub-text{
    text-align: center;
    color: grey;
}

.button-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0D6FFF;
    width: 196px;
    height: 52px;
    left: 860px;
    top: 574px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
}

@media(max-width: 760px){

    .main-content{
        justify-content:flex-start;
    }
    .icone-e-nome img{
        width: 10px;
        height: 10px;
    }
    .button-1{
        display: none;
    }
    span{
        font-size: 14px;
    }
    .main-content{
        flex-grow: 1;
        width: 375px;
    }      
    .Sputnik{
        font-size: 52px;
    }
    .main-text{
        font-size: 52px;
        margin-bottom: 120px;
    }
    .button-2{
        margin-top: 50px;
    }
    
}