* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif
}
header{
    display:flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-inline:1em;
    margin-block:1em;
}
h1{
    margin-right:20px;
}
header a{
    margin-inline:1em;
}
.main{
    background-image: url('../OSX.png');
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 80vh;
    max-height: 500px;
    overflow: hidden;
    color:white;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.7);
}
.TextOverlay{
    position: relative;
    z-index: 2;
}
.TextOverlay p{
    font-size:2em;
}
.OverlayHeader {
    font-size:4em;
    margin-block:1em;
    padding-inline: 10px;
}
.TempPage{
    width: 90%;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.thingContent{
    flex: 2;
}
.thingSidebar{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 600px) {
    .TextOverlay p{
        font-size:1.5em;
    }
    .OverlayHeader {
        font-size:3em;
    }
    .TempPage{
        flex-direction: column !important;
        gap: 1em;
    }
    .thingContent, .thingSidebar {
        width: 100%;
        flex: none;
    }
}.thingTitle{
    margin-bottom: .5em;
}
.thingText{
    line-height: 1.5em;
}
.testClass {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
footer{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-block:1em;
}