/*
################################################
## File:       style.css
## Part of:    Code403 Website
#### METADATA ##################################
## VERSION     DATE      BY   COMMENT
## 1.0         20240829  ME   Initial version
## 1.01        20241209  ME   Updated for mobile redesign
################################################
*/

.banner {
    height: auto;
    width: 300px;
}

/* collumns will stack when in mobile mode */
.column {
    width: 100%;
}

.grid-container {
    background-color: #28282d;
    border: 3px solid #509af3;
    border-radius: 25px;
    color: white;
    display: grid;
    gap: 5px;
    grid-template-columns: auto auto auto;
    padding: 10px;
    width: auto;
}

.section_header {
    background-color: white;
    border: 2px solid #509af3;
    border-radius: 20px;
    color: #509af3;
    font-family: poppins-semibold;
    font-size: 56px;
    grid-column-start: 2;
    grid-column-end: 2;
    padding: 5px; 
    text-align: center;
    vertical-align: middle;
}

.section_navi {
    background-color: #28282d;
    color: white;
    font-family: poppins-light;
    font-size: 10px;
    grid-column-start: 2;
    grid-column-end: 2;
    left: 0;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
}

.section_content {
    background-color: #28282d;
    font-family: poppins-regular;
    grid-column-start: 2;
    grid-column-end: 2;
    text-align: center;
    div {
        display: none;
    }
    div.initial {
        display: block;
    }
    :target {
        display: block;
    }
}

.section_logo {
    align-items: center;
    background-color: white;
    border: 2px solid #509af3;
    border-radius: 50%;
    display: block;
    font-family: poppins-regular;
    grid-column-start: 2;
    grid-column-end: 2;
    height: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    overflow: hidden;
    padding: 25px; 
    text-align: center;
    width: auto;
}

.section_footer {
    background-color: #28282d;
    color: white;
    font-family: poppins-light;
    font-size: 8px;
    grid-column-start: 2;
    grid-column-end: 2;
    left: 0;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
}

a {
    color: #509af3;
}

li.touch {
    color: #509af3;
    font-size: 14px;
    padding: 5px;
}

@media screen and (max-width: 600px) {
    li.touch:not(:last-child) {
        margin-bottom: 15px;
    }    
}

a:hover {
    color: white;
    transition: all 0.3s ease-in-out;
}

body {
    background-color: black;
    color: white;
    font-family: poppins-regular;
    max-width: 100%;
    margin: 0 auto;
    padding: 15px;
    padding-bottom: 15px;
    position: relative;
}

h1 {
    font-family: poppins-medium;
    font-size: 20px;
    color: #509af3;
    margin-left: 2px;
    text-align: left;
}

h2 {
    font-family: poppins-medium;
    color: #509af3;
    font-size: 14px;
    margin-left: 5px;
    text-align: left;
}

hr {
    border: 1px solid #509af3;
}

header {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.icon {
    background-color: white;
    border: 1px solid #509af3;
    border-radius: 20%;
    height: 20px;
    overflow: hidden;
    padding: 5px; 
    position: relative;
    text-align: center;
    vertical-align: middle;
    width: 20px;
}

main {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
    padding-bottom: 50px;
    font-family: poppins-regular;
}

.obfuscatedcontactinfo {
    background-color: #28282d;
    border: 0px solid #509af3;
    border-radius: 4px;
    color: white;
    height: 20px;
    padding: 5px; 
    position: relative;
    text-align: center;
    vertical-align: middle;
    max-width: 300px;
}

p {
    font-family: poppins-light;
    font-size: 12px;
    line-height: 20px;
    margin-left: 5px;
    max-width: 700px;
    text-align: left;
}

p.quote {
    font-family: poppins-light;
    font-size: 10px;
    font-style: italic;
    line-height: 20px;
    margin-left: 5px;
    text-align: left;
}

.highlight {
    color: #509af3;
    font-family: poppins-regular;
    font-size: 12px;
    font-weight: bold;
}

.hiddentext {
    color: white;
    font-family: poppins-light;
    font-size: 2px;
}

title {
    flex-direction: column;
    line-height: 10px;
}

ul {
    font-family: poppins-regular;
    font-size: 0px;
    text-align: left;
    list-style-type: circle;
    margin: 0;
    padding: 10px;
}

ol {
    font-family: poppins-regular;
    font-size: 0px;
    text-align: left;
    list-style-type: decimal;
    margin: 0;
    padding: 10px;
}

li {
    display: list-item;
    line-height: 1.5em;
    font-size: 12px;
    height: auto;
    text-align: left;
    text-indent: 0px;
    margin-left: 5px; 
    margin: 0px 0;
    max-width: 695px;
}

/*
#########
## EoC ##
#########
*/