@charset "utf-8";

body{
    font-family: 'Catamaran','Noto Sans JP',sans-serif;
    font-size: 30px;
    line-height: 1.5;
    color: #2c2c2c;
    background-color: lightblue;
    margin: 0;
    padding: 0;
}
body  p{
    font-size: 20px;
    line-height: 1.6;
    margin-left: 50px;
}
body h1 {
    display: inline-block;
    background-image: linear-gradient(135deg,#F72828 0%,#FFE500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
body div h3{
    margin-left: 35px;
}
body h3{
    display: inline-block;
    background-image: linear-gradient(135deg,#13AB13 0%,#0088FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
body a{
    font-size: 20px;
    color: #000dff;
    text-decoration: none;
}
body a:hover{
    color: #00b3ff;
}
.socialmedia a img{
    margin: 0 30px 0;
}
.profile img{
    width: 30%;
    height: 30%;
    margin-left: 30px;
}
.profile-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.marquee {
    font-size: 50px;
    width: 200px;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    animation: marquee 10s linear infinite;
}
.marquee p{
    display: inline-block;
    background-image: linear-gradient(135deg,#FF0000 0%,#D500FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes marquee {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
ul{
    list-style: none;
}
footer{
    font-size: 10px;
    text-align: center;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    padding: 5px 0 5px;
}
body header h1{
    margin-left: 20px;
}
