* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section {
    height: fit-content;
}

body {
    font-family: "Robotto", sans-serif;
}

section {
    padding: 5vw;
}

a {
    text-decoration: none;
    transition: all 0.3s;
}

/** HEADER **/

header {
    position: relative;
}

#particles-js {
    background-color: #2271b3;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}

.navbar {
    padding: 0.5vw 7vw;
    display: flex;
    position: relative;
    z-index: 100;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 6px 1vw 0px rgba(1, 0, 0, 0.3);
}

.navbar .logo_ctn svg {
    width: 9vw;
}

.Logo_Marista_Blanco {
    width: 5vw;
}

.navbar .menu_ctn ul {
    display: flex;
    gap: 3vw;
    align-items: center;
    list-style: none;
}

.navbar .menu_ctn ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3vw;
    position: relative;
}

.navbar .menu_ctn ul li a::before {
    position: absolute;
    content: "";
    bottom: -2%;
    left: 0;
    width: 0%;
    transition: all 0.4s;
    height: 2.5px;
    background-color: white;
}

.navbar .menu_ctn ul li a:hover::before {
    width: 100%;
}

/** logout btn **/
/* From Uiverse.io by vinodjangid07 */
.btn_logout {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: rgb(255, 65, 65);
}

/* plus sign */
.sign {
    width: 100%;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign svg {
    width: 17px;
}

.sign svg path {
    fill: white;
}
/* text */
.text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    transition-duration: 0.3s;
}
/* hover effect on button width */
.btn_logout:hover {
    width: 125px;
    border-radius: 40px;
    transition-duration: 0.3s;
}

.btn_logout:hover .sign {
    width: 30%;
    transition-duration: 0.3s;
    padding-left: 20px;
}
/* hover effect button's text */
.btn_logout:hover .text {
    opacity: 1;
    width: 70%;
    transition-duration: 0.3s;
    padding-right: 10px;
}
/* button click effect*/
.btn_logout:active {
    transform: translate(2px, 2px);
}

/** FOOTER **/

.footer_section {
    display: flex;
    padding: 3vw 2vw;
}

.first_column {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    align-items: center;
    justify-content: center;
}

.first_column .logo_ctn svg {
    width: 15vw;
}

.first_column .social_icon_ctn {
    display: flex;
    gap: 3vw;
}

.first_column .social_icon_ctn a {
    width: 3vw;
}

.first_column .social_icon_ctn a svg {
    transition: all 0.3s;
}

.first_column .social_icon_ctn a:hover svg {
    fill: rgb(183, 183, 183);
}

.credits_ctn {
    display: flex;
    color: white;
    gap: 1vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.second_column {
    display: flex;
    gap: 0.3vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 2vw;
}



.second_column p {
    font-size: 1vw;
    font-weight: 500;
}

.second_column a {
    font-size: 1vw;
    color: white;
    font-weight: 700;
}

.second_column a:hover {
    color: rgb(183, 183, 183);
}

.developed_credits {
   width: 100%;
   align-self: center;
   display: flex;
   position: relative;
   align-items: center;
   justify-content: center;
}

.developed_credits::before {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 1vw;
  height: 0.1vw;
  background-color: white;
  left: 0;
  top: -1vw;
}

.developed_credits p{
    font-size: 1vw;
    font-weight: 500;
}

.developed_credits a{
  font-size: 1vw;
  color: white;
  font-weight: 700;
}

.developed_credits a:hover{
  color: rgb(183, 183, 183);
}



