@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');


:root {
    --black: #333;
    --orange: #E9761B;
    --green: #728D1A;
    --grayish-white: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, Arial;
    font-size: 18px;
    line-height: 1.2;
}

/* Text */

h1, .text-largest {
    font-size: 36px;
}

h2, .text-large {
    font-size: 30px;
}

h3, .text-medium{
    font-size: 22px;
}


.bold {
    font-weight: bold;
}

.capitalize {
    text-transform: capitalize;
}

/* Display */

.flex{
    display: flex;
} 

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

.space-between {
    justify-content: space-between;
}

.space-evenly {
    justify-content: space-evenly;
}

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

.column {
    flex-direction: column;
}

/* Gap */

.huge-gap {
    gap: 4rem;
}

.big-gap {
    gap: 2rem;
}

.gap {
    gap: 1rem;
}

.small-gap {
    gap: 0.5rem;
}

/* RADIUS */

.radius {
    border-radius: 1rem;
}

/* Cursor */

.pointer {
    cursor: pointer;
}

/* Button, input, a */

button, input, a {
    all: unset;
    box-sizing: border-box;
}

button:hover {
    cursor: pointer;
}

button:active {
    transform: scale(0.95);
}

input {
    text-align: start;
}

.input-box {
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border: 1px solid var(--black);
    border-radius: 8px;
}

.input-email::placeholder {
    color: gray;
    font-weight: 300;
}

.link {
    color: blue;
    cursor: pointer;
}

/* Others */

.basic-shadow {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
}

.food-shadow {
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.25));
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    border: 0;
}

.wrap {
    flex-wrap: wrap;
}

/* General Styles */

.section-container {
    width: 100%;
}

.section-content {
    width: 1000px;
}

.company-image {
    width: 44px;
    height: 48px;
}


/* Modal */

.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
}

.modal-content a{
    width: max-content;
}

.close-button {
    position: absolute;
    right: 2rem;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 1050px) {
    * {
        font-size: 16px;
    }

    h1, .text-largest {
        font-size: 32px;
    }
    
    h2, .text-large {
        font-size: 26px;
    }
    
    h3, .text-medium{
        font-size: 18px;
    }

    .section-content {
        width: 800px;
    }
}

@media (max-width: 810px) {
    * {
        font-size: 14px;
    }

    h1, .text-largest {
        font-size: 26px;
    }
    
    h2, .text-large {
        font-size: 24px;
    }
    
    h3, .text-medium{
        font-size: 16px;
    }

    .section-content {
        width: 600px;
    }
}

@media (max-width: 600px) {
    * {
        font-size: 12px;
    }

    h1, .text-largest {
        font-size: 24px;
    }
    
    h2, .text-large {
        font-size: 22px;
    }
    
    h3, .text-medium{
        font-size: 14px;
    }

    .section-content {
        width: 100%;
    }
}

@media (max-width: 430px) {
    * {
        font-size: 10px;
    }

    h1, .text-largest {
        font-size: 20px;
    }
    
    h2, .text-large {
        font-size: 16px;
    }
    
    h3, .text-medium{
        font-size: 12px;
    }

}
