* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;

}

body {
    width: 100%;

    background-color: #17063B;
    font-size: 14px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header h1 {
    font-size: 2em;
}

#youtube {
    color: red;
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

main {
    display: flex;

    align-items: center;
    height: 100vh;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
}

main section {
    background-color: #ffffff;
    height: 0 auto;
    width: 100%;
    display: flex;
    margin: 20px;
    border-radius: 10px;
    flex-direction: column;
    padding: 20px;
}

.bar {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid rgb(236, 234, 234);
    padding: 5px;
}

.bar-end {
    display: flex;
    justify-content: end;
    gap: 15px;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin: 5px;


}

#content-more {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap:4px;
}




#content-more img {
    width: 50px;
}

#content-more-text {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%
}

#title-window {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif, monospace;

}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #f0f0f0;
}

#dot-one {
    background-color: rgb(195, 166, 241);
}

#dot-two {
    background-color: rgb(145, 98, 221);
}

#dot-three {
    background-color: rgb(103, 70, 155);
    ;
}


img {
    width: auto;
}

#myphoto {
    border-radius: 50%;
    width: 120px;
}

.container-sns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    width: 100%;
    margin: 0 auto;
    justify-content: center;
}

.snscard {
    margin: 20px;
}


#misskeylogo {
    width: 30px;

}

a {
    color: #6551c0
}


footer {
    color: #6551c0;
    position: absolute;
    bottom: 0;
}

footer p {
    text-align: center;
    justify-content: center;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .container-sns {}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    main {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    main section {
        width: 600px;
        height: auto;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}