

html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    

    --link: rgb(62, 239, 77);
    --highlight: rgb(246, 255, 116);
    --email: rgba(27, 27, 249, 0.961);
}

.container {
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box; 
}

::selection {
    background: var(--link);
}

::-moz-selection {
    background: var(--link);
}


.poppins-regular {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
}

h1 {
    font-size: 1em;
}

p {
    font-size: 0.8em;
    margin: 0;
    padding: 0;
}

.project-container {
    width: 80%;
    margin-bottom: 10px;

    
}

.text-container {
    width: 60%;
    text-wrap: wrap;
}

a{
    color: var(--link);
}

.email {
    color: var(--email);
}

.contact {
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 0.8em;
}

.image {
    width: 200px;
    margin: 5px;
}

.slide {
    width: 800px;
}

.description-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    text-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;

    * {
        margin-bottom: 40px;
    }
}

.video {
    width: 800px;
}