@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz@8..144&display=swap');

*{
    border: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
}

body{
    /*background: linear-gradient(45deg, #212121, #333333);
    background-size: cover;*/
    background-image: url("images/background.png");
    background-repeat: no-repeat, repeat-x;
    background-position: top right, center;
    
    height: 100vh;
    width: 100vw;
    font-family: 'Roboto Flex', sans-serif;

}
header{
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#logo{
    width: 250px;
}
nav{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin: 50px;
    justify-content: center;
    align-items: center;
}
hr {
    border: 0;
    height: 2px;
    background-image: linear-gradient(to right, transparent, #ffff, transparent); 
    margin-left: 50px;
    margin-right: 50px;
 }
a{
    text-decoration: none;    
}
button{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    transition: 0.5s;
    min-width: 300px;
    max-width: 300px;
    height: 50px;
    font-size: 20px;
    border-radius: 10px;
    background: linear-gradient(45deg, #FF5D00, #FFA800);
    color: white;
}

button:hover{
    transition: 0.5s;
    border-radius: 30px;
}

.icons{
    width: 25px;
}

footer{
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
    justify-content: center;
    align-items: center;
    color: white;
}
