@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

:root{
    --primary-color: #edf2fc;
    --secondary-color: #212121;
}

.dark-theme{
    --primary-color: #000106;
    --secondary-color: #fff;
}

nav ul{
    flex: 1;
    text-align: right;
}

.hero{
    height: 100vh;
    width: 100%;
    background: var(--primary-color);
    font-family: sans-serif;
    position: relative;
}

nav{
    width: 80%;
    margin: auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    text-decoration: none;
    color: var(--secondary-color);
}

nav ul li a:hover{
    color: #ff4321;
}

#icon{
    width: 30px;
    cursor: pointer;
    text-align: right;
}

body {
    font-family: 'Montserrat', cursive;
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    flex-direction: column;
}

h1 {
    color: var(--secondary-color);
}

p {
    color: var(--secondary-color);
}

.container {
    width: 91%;
    max-width: 680px;
    margin: 10px;
    padding: 50px 0px 100px 0px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-container img {
    width: 150px;
    border-radius: 50%;
}

.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.link-item {
    width: 100%;
    height: 56px;
    margin: 16px;
    border-radius: 20px;

    background-color: #91bbc4;
    display: flex;
    justify-content: space-between;
}

.icon {
    color: #EEF5DB;
    margin: 3px 8px;
    width: 44px;
    height: 44px;
}

.link-item p {
    margin-right: 60px;
}

.link-item:hover
{
    transition: cubic-bezier(0.07, 1.41, 0.82, 1.41);
    transform: scale(1.02);
    background-color: darkgrey
    
    
    ;
}