@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html, body {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;
}

header {
    position: fixed;
    left: 0vw;
    top: 0vh;
    width: 100vw;
    height: 15vh;
    background-color: rgb(106, 90, 205);
    color: rgb(86, 122, 215);
    text-align: center;
    font-family: "Mansalva", sans-serif;
    font-weight: 400;
    font-style: normal;    
    font-size: 80px;
    line-height: 15vh;
}

nav {
    position: fixed;
    left: 0vw;
    top: 15vh;
    width: 100vw;
    height: 10vh;
    background-color: rgb(86, 122, 215);
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

nav a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-family: "Bungee Shade", sans-serif;
    font-weight: 400;
    font-style: normal;
    border: rgb(131, 50, 207) solid 2px;
    border-radius: 5px;
    display: block;
    padding: 5px;
    height: 5vh;
    line-height: 5vh;
    background-image: url('https://png.pngtree.com/thumb_back/fw800/background/20210501/pngtree-aesthetic-violet-gold-marble-phone-wallpaper-image_691080.jpg');
    background-size: cover;
    background-position: center;
}

nav a:hover {
    background-color: blue;
    color: rgb(60, 60, 60);
    padding: 20px;
    filter: none;
}

main {

}
section {
    width: 100vw;
    height: 100vh;
}

#perfil {
    background-color: aquamarine;
}

#miPaso {
    background-color: lightsalmon;
}

#futuro {
    background-color: mediumpurple;
}

#random {
    background-color: palegreen;
}

#botonRandom:hover {
    background-image: url('https://i.pinimg.com/736x/89/02/13/89021326a1ecebf3cf004ba9c8e90669.jpg');
}