* {
    margin: 0px;
    padding: 0px
}

body, html {
    width: 100%;
    height: 100%;
}

.banner {
    width: 100%;
    height: 100%;
    background-image: url(./resources/banner.png);
    background-repeat: repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 0.5px rgba(0, 0, 0, 0.5)
}

.banner .title {
    font-size: 35px;
    margin: 2px;
}

.banner .subtitle {
    font-size: 20px;
    margin: 2px;
}

.about {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about .header {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3vw;
}

.about .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 90%;
}

.about .container .image-section {
    width: 40%;
    height: 90%;
}

.about .container .image-section img {
    width: 100%;
    height: 100%;
    padding: 12px;
    box-sizing: border-box;
    object-fit: cover;
}
.about .container .text-section {
    width: 60%;
    height: 90%;
    font-size: 1.7vw;
    padding: 12px;
    box-sizing: border-box;
}

.my-hobby {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffa9ca;
    color: white;
    text-shadow: 2px 2px 0.5px rgba(0, 0, 0, 0.5)
}

.my-hobby .header {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3vw;
}

.my-hobby .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 90%;
}

.my-hobby .container .image-section {
    display: flex;
    width: 100%;
    height: 70%;
}

.my-hobby .container .image-section img {
    width: 50%;
    height: 100%;
    padding: 12px;
    box-sizing: border-box;
    object-fit: cover;
}

.my-hobby .container .text-section {
    width: 100%;
    height: 20%;
    font-size: 1.7vw;
    padding: 12px;
    box-sizing: border-box;
}

.contact {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact .header {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3vw;
}

.contact .contact-list {
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    list-style: none;
}

.contact .contact-list li, a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact .contact-list img {
    width: 30%;
    height: 30%;
}
