html {
    background-color: rgb(105, 161, 238);
    border-style: solid;
    border-width: 0.2vw;
    border-color: rgb(0, 0, 0);
    padding-bottom: 100vw;
}
h1{ 
    font-family: Helvetica;
    box-shadow: 0.5vw 0.5vw rgba(0, 0, 0, 0.5);
    background-color: rgb(156, 189, 232);
    padding-top: 1.4vw;
    padding-bottom: 1.4vw;
    margin: 0 auto;
    width: 50%;
    font-size: 5vw;
    text-align: center;
    padding-left: 5vw;
    padding-right: 5vw;
    font-weight: 800;
    border-color: rgb(0, 0, 0);
    border-style: solid;
    letter-spacing: -3px;
    border-radius: 15px;
    transition: all 0.1s;
}
h1:hover{
    scale: 1.05;
    box-shadow: 0.8vw 0.8vw rgba(0, 0, 0, 0.5);
}
p{
    font-family: 'Helvetica', sans-serif;
    display: flex;
    justify-content: center; 
    font-size: 2vw;
    font-weight: bold;
    white-space: pre-wrap;
    background-color: rgb(156, 189, 232);
    padding: 1vw 3vw;
    margin: 0;
    border-style: solid;
    border-width: 0.2vw;
    border-color: rgb(0, 0, 0);
    box-shadow: 0.5vw 0.5vw rgba(0, 0, 0, 0.5);
    transition: all 0.1s;
    border-radius: 5px;
}
.time{
    font-family: monospace;
    font-weight: 800;
    font-size: 3vw;
    display: flex;
    object-position: bottom;
    text-align: bottom;
    justify-content: bottom;
    align-self: flex-end;
    padding-bottom: 3vw;
} 
.time:hover{ 
    text-decoration: underline;
}
.spec:hover{
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px; 
}
p:hover{
    box-shadow: 0.9vw 0.9vw rgba(0, 0, 0, 0.5);
    transform: translate(-0.2vw, -0.2vw);
    scale: 1.03;
}
.weather { 
 
}
.sticker1{
    position: absolute;
    height: clamp(14vw, 18vw, 23vw);
    width: clamp(14vw, 18vw, 23vw);
    transform: rotate(3deg);
    top: 10vw;
    left: 4vw;
    transition: all 0.1s;
}
.sticker1:hover{
    scale: 1.2;
}
.sticker2{
    position: absolute;
    height: clamp(13vw, 18vw, 22vw);
    width: clamp(13vw, 18vw, 22vw);
    transform: rotate(12deg);
    top: 10vw;
    right: 5vw;
    transition: all 0.1s
}
.sticker2:hover{ 
    scale: 1.2;
}
.sticker3{
    position: absolute;
    height: clamp(13vw, 18vw, 22vw);
    width: clamp(13vw, 18vw,22vw);
    top: 28vw;
    right: 5vw;
    transition: all 0.1s;
}
.sticker3:hover{
    scale: 1.2;
}
.sticker4{
    position: absolute;
    height: clamp(13vw, 18vw, 22vw);
    width: clamp(13vw, 18vw, 22vw);
    top: 27vw;
    left: 8vw;
    transform: rotate(-15deg);
    transition: all 0.1s;
}
.sticker4:hover{
    scale: 1.2;
}
.item{
    display: flex;
    justify-content: center;
    margin: 1.2vw;
    width: auto;
}
span{
    white-space: pre-wrap;
}

#content {
    animation: smoothFade 0.8s ease-out forwards;
}

@keyframes smoothFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transforms: translateY(0);
    }
}