html {
    background-color: #000000;
    color: #ffffff;
}
body {
    margin: 0;
}
.bold {
    font-weight: bold;
}
.underline {
    text-decoration: underline;
}

/* Styling */
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: auto;    
}
main > h1 {
    text-align: center;
    color: #ffffff;
    font-size: 2.5em;
    
    margin-right: 5px;
    margin-left: 5px;
}
main > p {
    text-align: center;
    font-size: 1.5em;
    width: 80%;
}
.tips {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    width: 80%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;

    border-radius: 20px;
    background-color: #A61801;
}
.tips > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    margin-left: 20px;
}
.tips > div:last-child {
    margin-bottom: 30px;
}
.tips > div > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    width: 90%;
    margin-top: 30px;
    
    cursor: pointer;
}
.tips > div > div > h2 {
    font-size: 2em;
    margin: 0;
    margin-right: 10px;

    width: 90%;
}
.tips > div > p {
    display: none;
    font-size: 1.5em;
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 20px;

    width: 75%;
}
.tips svg {
    width: 20px;
    height: auto;

}


@media (max-width: 1024px) {
    main > h1 {
        font-size: 2.2em;
    }
    main > p {
        font-size: 1.2em;
    }
    .tips > div > p {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    main > h1 {
        font-size: 1.5em;
    }
}

@media (max-width: 530px) {
    main > h1 {
        font-size: 1.2em;
    }
    main > p {
        font-size: 1em;
    }
    .tips > div > div > h2 {
        font-size: 1.5em;
    }
}

@media (max-width: 425px) {
    main > h1 {
        font-size: 1em;
    }
    .tips > div > div > h2 {
        font-size: 1.4em;
    }
}

@media (max-width: 375px) {
    main > h1 {
        font-size: 0.9em;
    }
    main > p {
        font-size: 0.8em;
    }
    .tips > div > div > h2 {
        font-size: 1.2em;
    }
    .tips > div > p {
        font-size: 0.8em;
    }
}

@media (max-width: 320px) {
    main > h1 {
        font-size: 0.8em;
    }
    .tips > div > div > h2 {
        font-size: 1em;
    }
    .tips > div > p {
        font-size: 0.6em;
    }
}


