*{
    font-family:Verdana, Tahoma, sans-serif
}



nav {
    width: 60vw;
    color: #132C47;
    display: flex; 
    justify-content: space-around;
}

nav a:hover{
    color:rgb(100, 103, 243);
    transition: 100ms;
}

#menu{
    display: flex;
    width: 90vw;
    justify-content: space-between;
    align-items: center;
    margin-top: 5vh;
    border-bottom: solid rgba(200, 200, 200, 0.582) 1px;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    position:sticky;
}


#acheter{
    outline: none;
    background: rgb(100, 103, 243);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;

}

#bitcoinlogo{
    width: 8em;
}



h1 {
    margin:0;
    width:50vw;
    font-size: 72px;
    background: -webkit-linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

#content{
    display: flex;
    justify-content: space-between;
    width: 90vw;
    margin-top: 15vh;
}

#left{
    margin-top: 10vh;
    width: 40vw;
    margin-left: 5vw;
    height: 70vh;
}

#left p{
    color: rgb(26, 23, 18);
}

#left a{
    background-image: linear-gradient(to bottom right, #39537e, rgb(100, 103, 243) );
    outline: none;
    padding: 20px 30px;
    border: none;   
    border-radius: 10px;
    color: white;
    font-size: 1em;
}

#right{
    margin-top: 10vh;
}

:root{
    --text-color: rgb(228, 224, 224)
}

    @media (max-width:700px) {
        #content{
            display: flex;
            flex-direction: column;
        }
        h1{
            width:90vw;
        }
    }

a{
    text-decoration: none;
    color: #132C47
}


