@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sixtyfour+Convergence&display=swap');

*{
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    list-style: none;
    text-decoration: none;
}

nav{
    background-color: rgb(255, 68, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 7.5vh;
}

main {
    background-color: rgb(83, 83, 83);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.projects {
    padding-top: 5vh;
    padding-bottom: 10vh;
    height: 92.5vh;
    width: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.project-section {
    border: 1px solid black;
    background-color: wheat;
    border-radius: 50px;
    width: 40vh;
    height: 10vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.logo-projects {
    font-size: 50px;
    color: white;
}

.project-section a{
    font-weight: 500;
    color: black;
    text-decoration: underline;
}