body,
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body {
    padding-top: 90px;
}
nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    color: white;
    background: #020024;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

nav .container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}





nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
}
nav .logo{
    font-size: 30px;
     font-weight: bold;
}

nav ul a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}



section#home{
    background-image: url("images/istockphoto-1545637815-612x612.jpg");
}


section#home{
    display: flex;
    justify-content: center;
    padding-top: 80px;
    font-size: 40px;
    width: 100%;
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: white;
}
div.card{
    border: 1px solid black;
    width: 300px;
    height: 22vh;
    display: inline-block;
    margin: 50px;
    font-size: 30px;
    background-color: aquamarine;
    text-align: center;
    border-radius: 15px;
    transition: all ease-in-out 1s;  
}
section#games{
    background-color: greenyellow;
}
section#about{ 
    background: linear-gradient(90deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);;
    height: 40vh;
    font-size: 25px;
}
p.companySubtitle{
    font-size: 20px;
}
section#company{
    background: #EEAECA;
    background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
    transition: all ease-in-out 1s;
}
section#games :hover{
    transform: scale(1.1); 
}
section#company :hover{
    transform: scale(1.1);
}