* {
    margin: 0px;
    padding: 0px;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: large;
}

h1,
p {
    color: white;
}

li {
    list-style: none;
}

.section {
    width: 100%;
    min-height: 91vh;
    background-repeat: no-repeat;
    background-color: #272b36;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.navbar {
    height: 9vh;
    background: linear-gradient(90deg, rgba(47, 51, 64, 1) 33%, rgba(42, 130, 78, 1) 93%);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 20px;
    color: white;
}

.navbar-left {
    display: flex;
    gap: 15px;
    justify-self: start;
    align-items: center;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.navbar-center a:hover {
    color: rgb(127, 221, 162);
}

.navbar-right {
    display: flex;
    justify-self: end;
    gap: 15px;
}

.navbar a {
    color: white;
}

.container {
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    background-color: #2f3340;
    padding: 20px;
    border-radius: 24px;
    gap: 15px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 2px solid #3e4352;
}

.container:hover {
    transform: scale(1.05);
    border-color: #86d689;
}

.container img {
    border-radius: 50%;
    background-color: #86d68984;
    object-fit: cover;
    border: #3e4352 solid 8px;
}

.container h1 {
    font-size: 60px;
    margin: auto;
    color: #86d689;
    text-align: center;
}

.container p,
a,
i {
    color: #aaabb1;
    text-align: center;
}

.container ul {
    display: flex;
    gap: 15px;
    margin: auto;
}

.container a:hover {
    color: #2a7ae2;
}

.container ul li a i {
    font-size: 36px;
    transition: transform 0.2s ease-in-out;
}

.container ul li a i:hover {
    transform: scale(1.2);
    color: #86d689;
}

img {
    max-width: 100%;
    height: auto;
}

.stack {
    display: flex;
    width: 100%;
    justify-content: center;
}

.stack i {
    font-size: 47px;
    filter: grayscale(100);
}

.stack i:hover {
    filter: none;
}

.section-school {
    width: 100%;
    min-height: 100vh;
    background-color: #272b36;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 50px 0;
}

.section-school h1 {
    color: #ffffff;
}

.timeline {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 6px;
    background: #3e4352;
    transform: translateY(-50%);
}

.timeline-dot {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #86d689;
    border: 4px solid #2f3340;
    border-radius: 50%;
    transform: translateY(-50%);
}

.dot-ss {
    left: 37%;
}

.dot-vs {
    right: 37%;
}

.school-card {
    background-color: #2f3340;
    border-radius: 20px;
    padding: 20px 30px;
    color: #aaabb1;
    border: 2px solid #3e4352;
    transition: transform 0.3s ease, border-color 0.3s ease;
    max-width: 450px;
}

.school-card h3 {
    color: #86d689;
    margin-bottom: 10px;
}

.school-card:hover {
    transform: scale(1.05);
    border-color: #86d689;
}

.school-card p,
i {
    margin: 5px 0;
    font-size: large;
}

.school-card img {
    border-radius: 10px;
}

.school-card #mend {
    filter: grayscale(100);
}

.container-school,
.container-uni {
    width: 60%;
    display: flex;
    margin: 40px auto;
}

.container-school {
    justify-content: flex-start;
}

.container-uni {
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .section {
        width: 100%;
    }

    .navbar {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        padding: auto;
    }

    .navbar ul {
        display: none;
    }

    .container h1 {
        font-size: 50px;
    }

    .stack i {
        font-size: 40px;
    }

    .timeline {
        display: none;
    }

    .timeline-dot {
        display: none;
    }

    .dot-ss {
        display: none;
    }

    .dot-vs {
        display: none;
    }

    /*TODO: MOBILNI VERZE TIMELINE*/
}
