@import url('../elements/nav-bar.css');
@import url('../elements/web-bg.css');

* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     text-decoration: none;
     border: none;
     outline: none;
     font-family:'Courier New', Courier, monospace;
}

html {
     scroll-behavior: smooth;
     font-size: 62.5%;
}

section {
     min-height: 100vh;
     padding: 5rem 9% 5rem;
}

.blog {
     display:flex;
     justify-content: center;
     align-items: center;
     gap: 8rem;
}

.blog-intro {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;;
}

.blog .content h1 {
     font-size: 6rem;
     font-weight: 700;
     line-height: 1.3;
}

.blog-section {
     border-style: outset;
     border-color: white;
     border-radius: 5px;
     padding: 5px;
}

.blog-title-text {
     color: white;
     text-decoration: none;
     cursor: pointer;
     transition: 0.3s ease;
}

.blog-title-text:hover {
     color: rgb(238, 162, 204);
     text-decoration: underline;
     transition: 0.3s ease;
}

.blog-headings-large {
     font-size: large;
}

.blog-headings-medium {
     font-size: medium;
}

.blog-headings-small {
     font-size: small;
}

.blog-links {
     color: white;
     text-decoration: underline;
     cursor: pointer;
}

span {
     color: white;
}

h1 {
     font-size: 20px;
     display: flex;
     justify-content: center;
     align-items: center;
}

h3 {
     font-size: 20px;
     display: flex;
     justify-content: center;
     align-items: center;
}

.content h3 {
     font-size: 4rem;
     margin-bottom: 1rem;
     font-weight: 700;
}

.content {
     font-size: 15px;
}

.thumbnail {
    width: 200px;
    cursor: pointer;
    transition: 0.2s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
}

/*
* Seperating content for different image sizes
*/
.img-content-1 {
    position: relative;
    left: 5px;
    width: 300px;
}

.img-content-2 {
    position: relative;
    left: 5px;
    width: 400px;
}

.img-content-3 {
    position: relative;
    left: 10px;
    width: 500px;
}

.yt-embed {
    width: 693px;
    height: 360px;
}


.hidden-content {
    display: none;
}

.show-more-btn {
    background-color:white;
    border-radius: 5px;
    transition: 0.3s ease;
}

.show-more-btn:hover {
    box-shadow: 0 0 5px white;
    cursor: pointer;
}

.link {
    color: white;
    text-decoration: underline;
    cursor: pointer;
    transition: 0.3s ease;
}

.link:hover {
    color: rgb(238, 162, 204);
    text-decoration: underline;
    transition: 0.3s ease;
}

.copyright {
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}