@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: normal;
    margin: 0px 10px;
    height: 100vh;
}

header {
    height: 50px;

    h2 {
        margin: 0px;
    }
}

main {
    height: calc(100% - 50px);
    overflow: auto;
}

/* Width and Height styles */

.half-width {
    width: 50%;
}

.width-33 {
    width: 33%;
}

/* flex styles */

.flex {
    display: flex;
}

.spacebetween-center {
    justify-content: space-between;
    align-items: center;
}

.center-center {
    justify-content: center;
    align-items: center;
}

.gap-6px {
    gap: 6px;
}

.column {
    flex-direction: column;
}

/*  padding and margin */
.padding-left-15px {
    padding-left: 15px;
}

.no-margin {
    margin: 0px;
}


/* Link styles */
a {
    text-decoration: none;

    &:hover {
        text-decoration: underline;
        color: grey;
    }
    
    &:active {
        text-decoration: underline;
        color: grey; 
    }
}

nav {
    a:active {
        text-decoration: underline;
        color: grey; 
    }
}

/* form styles fields */

button {
    font-size: large;
}

button, input {
    height: 30px;
}

/* Media queries */

@media only screen and (max-width: 600px) {
    .flex {
        flex-direction: column;
    }

    .width-33,
    .half-width {
        width: 100%;
    }

    .spacebetween-center {
        justify-content: center;
    }
}