/************************

CSS for wildetruex.com

************************/

/* Import Noto Sans from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Noto Sans", sans-serif;
    background-color: #222222;
    color: #222222;
    text-align: center;
}

/* All headings are uppercase */
h1, h2, h3, h4 {
    text-transform: uppercase;
}

/* All divs have white bg */
div {
    background-color: white;
}

/* Center aligned div */
.center {
    width: 60%;
    background-color: white;
    margin: auto;
    padding: 30px;
}

/* Left aligned div */
.left {
    text-align: left;
    padding-left: 100px;
}

/* Page IDs */

#home {}

#cv {
    margin-top: 0;
}

/* Rules for different screen sizes below */

/* XL */

@media (min-width: 1400px) {}

/* LG */

@media (min-width: 1060px) {}

/* MD */

@media (max-width: 800px) {}

/* SM */

/* Styles applied when the screen is max width 600px */
@media (max-width: 600px) {
    .left {
        text-align: center;
        padding-left: 0;
    }
    
    .center {
        width: 80%;
    }
}