@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Sofadi+One&display=swap');

* {
    font-family: 'Inter Tight', sans-serif;
    margin: 0;
    padding: 5px;
    box-sizing: border-box;
}

li {
    list-style-type: none;
}

p {
    font-size: 0.9rem;
}

body {
    min-height: 100vh;
    background: rgb(30, 30, 30);
    color: rgb(250, 250, 250);
}

nav {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 10px 20px;
    transition: 0.5s;
}

nav ul {
   display: grid;
   grid-template-columns: 33% 33% 33%;
}

nav ul:hover {
    background: #474dff;
    color: white;
    border: dashed 1px white;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    justify-content: center;
    text-align: center;
}

nav ul li:hover {
    color: white;
    font-weight: bold;
    transition: 0.5s;
    text-decoration: overline;
}

.header {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    margin: 30px auto;
}

h1 {
    font-size: 5rem;
}

.header-left-container h2 {
    color: #474dff;
    font-size: 1.8rem;
}

.header-right {
    width: 50%;
}

#logo {
    width: 100%;
    margin: 0 auto;
}

.info {
    display: grid;
    grid-template-columns: 33% 67%;
    background: rgb(10, 10, 10);
    border-radius: 10px;
}

.info-left {
    padding: 20px;
}

button {
    background: #474dff;
    color: white;
    border: none;
    width: 150px;
    padding: 10px 0;
    border-radius: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 5px;
    display: block;
    cursor: pointer;
    transition: 0.5s;
}

button:hover {
    background: #8487e9;
    transform: scale(1.1);
    text-decoration: overline;
}

.investissors {
    display: grid;
    align-items: center;
    height: 85%;
}

.img-container {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    width: 100%;
}

.img-container img {
    height: 60px;
}

/* Media queries (responsive) */

@media screen and (max-width: 870px) {
    h1 {
        font-size: 2.5rem;
    }

    .header-left-container h2 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 590px) {
    nav {
        grid-template-columns: 35% 65%;
    }

    nav ul {
        font-size: 0.7rem;
    }

    .header {
        display: block;
    }

    .info {
        display: block;
        text-align: center;
    }

    button {
        margin: 5px auto;
    }

    .btn-container {
        text-align: center;
    }

    .img-container img {
        height: 40px;
    }
}
