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

:root {
    --primary-color: #00b3b3;
    --dark-gray: #999999;
    --off-white: #d9d9d9;
}
html {
    scroll-behavior: smooth;
  }
body {
    font-family: 'Fredoka', sans-serif;
    margin: 0px;
}

hr {
    margin: 2rem 0rem;
}

/* spaces */
.margine-md{
    margin: 2rem;
}

/* for simple container */
.container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.container-center {
    max-width: 600px;
    margin: auto;
}


/* links */
.link {
    text-decoration: none;
    padding: 0.5rem 1rem;
    
}

.primary-link {
    background-color: var(--primary-color);
    border-radius: 0.5rem;
    color: aliceblue;
}

.secondary-link {
    color: var(--primary-color);
    border-radius: 0.5rem;
    border: 1px solid var(--primary-color);
}

/* List */
.non-bullet {
    list-style: none;
}

.list-item-inline {
    display: inline;
    padding: 0rem 0.5rem;
}

/* Navigation */
.navigation {
    background-color: var(--primary-color);
    color: aliceblue;
    padding: 1rem;
    border-bottom-left-radius: 1rem;
}

.navigation .nav-brand {
    font-weight: bold;
}

.navigation .unordered {
    text-align: right;
}

.navigation .link {
    color: aliceblue;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    padding-top: 5rem;
}


.hero .hero-img{
    float: right;  
    max-width: 500px;
    /* max-width: 100%; */
    /* position: absolute; */
    margin: auto;
    flex-wrap: wrap;
}
.hero .space{
    flex: 4;
}
.hero .name{
    font-size: 4.5rem;
    text-align: left;
    color: var(--primary-color);
}
.hero-center{
    max-width: 1100px;
    margin: auto;
}

/* Section */
.section {
    padding: 2rem;
    
}

.section h1 {
    text-align: center;

}

.ow {
    background-color: var(--off-white);
}
/*Table*/
.techno{
    width:100%;
}
.techno th {
    border-width: 1px;
    border-style: solid;
    border-color: black;
    border-radius: 10px;
}
.techno td {
    border-width: 1px;
    border-style: solid;
    border-color: black;
    border-radius: 10px;
}


/* Footer */
.footer {
    background-color: var(--primary-color);
    padding: 2rem 1rem;
    text-align: center;
    color: white;
    border-top-right-radius: 1rem;
}

.footer .link {
    color: white;
}
.footer .footer-header{
    font-weight: bold;
    font-size: large;
}

.footer .ul {
    padding-inline-start: 0px;
}


.flex-container{
    display:flex;
}
.company{
    width: 100%;
}
.work{
    width: 100%;
}

.flex-profiles{
    display:flex;
}
.pro{
    width: 100%;
    padding: 2%;
}

